We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d1ba2a commit cf423d9Copy full SHA for cf423d9
src/test/31-conflicts.ts
@@ -11,7 +11,8 @@ describe("config.maxRetries", () => {
11
const dbName = `testdb_${Date.now()}`;
12
const collectionName = `collection-${Date.now()}`;
13
let db: Database, collection: DocumentCollection<{ data: number }>;
14
- before(async () => {
+ before(async function() {
15
+ this.timeout(60000);
16
system = new Database({ ...config, poolSize: 1_000 });
17
if (Array.isArray(config.url) && config.loadBalancingStrategy !== "NONE") {
18
await system.acquireHostList();
0 commit comments