File tree 1 file changed +3
-5
lines changed
packages/firestore/test/integration/api
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -1618,7 +1618,7 @@ apiDescribe('Queries', (persistence: boolean) => {
1618
1618
1619
1619
// eslint-disable-next-line no-restricted-properties
1620
1620
( persistence ? it . skip : it ) (
1621
- 'can raise expected snapshot when resume query after deleting docs ' ,
1621
+ 'resuming a query should remove deleted documents indicated by existence filter ' ,
1622
1622
( ) => {
1623
1623
const testDocs = { } ;
1624
1624
for ( let i = 1 ; i <= 100 ; i ++ ) {
@@ -1633,11 +1633,9 @@ apiDescribe('Queries', (persistence: boolean) => {
1633
1633
txn . delete ( doc ( coll , 'doc' + i ) ) ;
1634
1634
}
1635
1635
} ) ;
1636
- // Wait 10 seconds, during which the watch will stop tracking the query
1636
+ // Wait 10 seconds, during which Watch will stop tracking the query
1637
1637
// and will send an existence filter rather than "delete" events.
1638
- await ( function ( ) {
1639
- return new Promise ( resolve => setTimeout ( resolve , 10000 ) ) ;
1640
- } ) ( ) ;
1638
+ await new Promise ( resolve => setTimeout ( resolve , 10000 ) ) ;
1641
1639
const snapshot2 = await getDocs ( coll ) ;
1642
1640
expect ( snapshot2 . size ) . to . equal ( 50 ) ;
1643
1641
} ) ;
You can’t perform that action at this time.
0 commit comments