Skip to content

Commit 7e7ec91

Browse files
increase timeout for ci
1 parent 11b7a36 commit 7e7ec91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web/tests/multiple_instances.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,11 @@ describe('Multiple Instances', { sequential: true }, () => {
232232
// connect the second database in order for it to have access to the sync service.
233233
secondDatabase.connect(createTestConnector());
234234
// connect the first database - this will actually connect to the sync service.
235-
const { syncService } = await connect();
235+
await connect();
236236

237237
expect(database.currentStatus.connected).true;
238238

239-
await vi.waitFor(() => expect(secondDatabase.currentStatus.connected).true);
239+
await vi.waitFor(() => expect(secondDatabase.currentStatus.connected).true, { timeout: 3000 });
240240
});
241241

242242
sharedMockSyncServiceTest(

0 commit comments

Comments
 (0)