From 382f12e229539373d3efcbe949f871c90a346cd7 Mon Sep 17 00:00:00 2001 From: Jorge Yero Salazar Date: Mon, 27 Jun 2022 10:03:14 -0400 Subject: [PATCH] Add expression type test --- test/types/expressions.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/types/expressions.test.ts b/test/types/expressions.test.ts index 213cc22d0aa..174c5c6e3cd 100644 --- a/test/types/expressions.test.ts +++ b/test/types/expressions.test.ts @@ -163,4 +163,8 @@ const toLong: Expression = { $toLong: '$qty' }; const nullExpr: Expression = { $ne: null -}; \ No newline at end of file +}; + +const nullNETupleExpr: Expression = { + $ne: ["$name", null] +};