Skip to content

Commit ec521eb

Browse files
committed
add the "!= null" test case
1 parent 00760d7 commit ec521eb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

packages/firestore/test/integration/api/query.test.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1793,6 +1793,19 @@ apiDescribe('Queries', persistence => {
17931793
'g',
17941794
'h'
17951795
);
1796+
1797+
testQuery = query(coll, where('zip', '!=', null));
1798+
await checkOnlineAndOfflineResultsMatch(
1799+
testQuery,
1800+
'a',
1801+
'b',
1802+
'c',
1803+
'd',
1804+
'e',
1805+
'f',
1806+
'g',
1807+
'h'
1808+
);
17961809
});
17971810
});
17981811

0 commit comments

Comments
 (0)