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] +};