We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bd6142 commit 7b410e6Copy full SHA for 7b410e6
packages/firestore/test/integration/api/query.test.ts
@@ -1858,8 +1858,11 @@ apiDescribe('Queries', (persistence: boolean) => {
1858
});
1859
1860
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.
1864
// eslint-disable-next-line no-restricted-properties
- (persistence ? it.skip : it)(
1865
+ (USE_EMULATOR ? it.skip : it)(
1866
'resuming a query should remove deleted documents indicated by existence filter',
1867
() => {
1868
const testDocs: { [key: string]: object } = {};
0 commit comments