Skip to content

Commit 5cc825d

Browse files
committed
Increase the timeouts in firestore/compat tests as well
1 parent 9384f10 commit 5cc825d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore-compat/test/transactions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ apiDescribe('Database transactions', (persistence: boolean) => {
241241
.run(get, set1, set2)
242242
.expectDoc({ foo: 'bar2' });
243243
});
244-
});
244+
}).timeout(10000);
245245

246246
it('runs transactions after getting non-existent document', async () => {
247247
return integrationHelpers.withTestDb(persistence, async db => {
@@ -280,7 +280,7 @@ apiDescribe('Database transactions', (persistence: boolean) => {
280280
.run(get, set1, set2)
281281
.expectDoc({ foo: 'bar2' });
282282
});
283-
});
283+
}).timeout(10000);
284284

285285
it('runs transactions on existing document', async () => {
286286
return integrationHelpers.withTestDb(persistence, async db => {

0 commit comments

Comments
 (0)