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 618c3d0 commit 2ee8bbdCopy full SHA for 2ee8bbd
test/integration/uri-options/uri.test.ts
@@ -51,7 +51,8 @@ describe('URI', function () {
51
52
const client = this.configuration.newClient('mongodb://%2Ftmp%2Fmongodb-27017.sock');
53
await client.connect();
54
- await client.close();
+ const err = await client.close().catch(e => e);
55
+ expect(err).to.not.exist;
56
}
57
});
58
0 commit comments