Skip to content

Commit

Permalink
Give the schema update integration test a sufficiently long timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tadzik committed Jun 4, 2024
1 parent 1777f11 commit 8790e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/PgDatastoreTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describeFnl("PgDatastore", () => {
await ds.ensureSchema();
const { version } = (await ds.postgresDb.one(`SELECT version FROM schema`));
expect(version).to.equal(PgDatastore.LATEST_SCHEMA);
});
}).timeout(10_000);

doDatastoreTests(() => ds, async () => {
await ds.postgresDb.none("DELETE FROM rooms");
Expand Down

0 comments on commit 8790e83

Please sign in to comment.