Skip to content

Commit cf423d9

Browse files
committed
Attempt to fix the test
1 parent 4d1ba2a commit cf423d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/31-conflicts.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ describe("config.maxRetries", () => {
1111
const dbName = `testdb_${Date.now()}`;
1212
const collectionName = `collection-${Date.now()}`;
1313
let db: Database, collection: DocumentCollection<{ data: number }>;
14-
before(async () => {
14+
before(async function() {
15+
this.timeout(60000);
1516
system = new Database({ ...config, poolSize: 1_000 });
1617
if (Array.isArray(config.url) && config.loadBalancingStrategy !== "NONE") {
1718
await system.acquireHostList();

0 commit comments

Comments
 (0)