Skip to content

Commit 0d65a72

Browse files
committed
test(database, e2e): increase child add listener timeout
I have a setup locally that runs about the same speed as CI, and this caused flakiness at 100ms
1 parent 09db632 commit 0d65a72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/database/e2e/query/once.e2e.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('database().ref().once()', () => {
125125

126126
ref.once('child_added').then($ => callback($.val()));
127127
await ref.child('foo').set(value);
128-
await Utils.sleep(100);
128+
await Utils.sleep(1000);
129129

130130
callback.should.be.calledOnce();
131131
callback.should.be.calledWith(value);

0 commit comments

Comments
 (0)