Skip to content

Commit 7b410e6

Browse files
committed
skip the integration test when using emulator
1 parent 5bd6142 commit 7b410e6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,8 +1858,11 @@ apiDescribe('Queries', (persistence: boolean) => {
18581858
});
18591859
});
18601860

1861+
// TODO(Mila): Skip the test when using emulator as there is a bug related to
1862+
// sending existence filter in response: b/270731363. Remove the condition
1863+
// here once the bug is resolved.
18611864
// eslint-disable-next-line no-restricted-properties
1862-
(persistence ? it.skip : it)(
1865+
(USE_EMULATOR ? it.skip : it)(
18631866
'resuming a query should remove deleted documents indicated by existence filter',
18641867
() => {
18651868
const testDocs: { [key: string]: object } = {};

0 commit comments

Comments
 (0)