Skip to content

Firestore: transactions.test.ts: increase the timeout of some tests to reduce flakiness #7399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 29, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/firestore/test/integration/api/transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ apiDescribe('Database transactions', (persistence: boolean) => {
.run(get, set1, set2)
.expectDoc({ foo: 'bar2' });
});
});
}).timeout(10000);

// This test is identical to the test above, except that withNonexistentDoc()
// is replaced by withDeletedDoc(), to guard against regression of
Expand Down Expand Up @@ -355,7 +355,7 @@ apiDescribe('Database transactions', (persistence: boolean) => {
.expectDoc({ foo: 'bar2' });
await tt.withDeletedDoc().run(get, set1, set2).expectDoc({ foo: 'bar2' });
});
});
}).timeout(10000);

it('runs transactions on existing document', async () => {
return withTestDb(persistence, async db => {
Expand Down