diff --git a/test/types/expressions.test.ts b/test/types/expressions.test.ts index dd889576728..174c5c6e3cd 100644 --- a/test/types/expressions.test.ts +++ b/test/types/expressions.test.ts @@ -164,3 +164,7 @@ const toLong: Expression = { $toLong: '$qty' }; const nullExpr: Expression = { $ne: null }; + +const nullNETupleExpr: Expression = { + $ne: ["$name", null] +};