Skip to content

Commit 800d4ea

Browse files
committed
Increase even more
1 parent cf423d9 commit 800d4ea

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/test/31-conflicts.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ 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 function() {
15-
this.timeout(60000);
14+
before(async () => {
1615
system = new Database({ ...config, poolSize: 1_000 });
1716
if (Array.isArray(config.url) && config.loadBalancingStrategy !== "NONE") {
1817
await system.acquireHostList();
@@ -21,7 +20,7 @@ describe("config.maxRetries", () => {
2120
collection = await db.createCollection(collectionName);
2221
await db.waitForPropagation(
2322
{ pathname: `/_api/collection/${collection.name}` },
24-
60000,
23+
80000,
2524
);
2625
});
2726
after(async () => {

0 commit comments

Comments
 (0)