Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe('Documents -> Generate schema -> Validate Documents against the schema'
});

describe('With a MongoDB Cluster', function () {
this.timeout(30_000);

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was about to actually revert this since the extra time didn't help. Do you want to test with the longer timeout before?

this.timeout(120_000);

let client: MongoClient;
let db: Db;
Expand All @@ -69,6 +69,7 @@ describe('With a MongoDB Cluster', function () {
});

after(async function () {
this.timeout(60_000);
await client?.close();
});

Expand Down