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 374b3ac commit c41ff76Copy full SHA for c41ff76
src/archivist/recorder/repositories/mongo/index.test.js
@@ -53,6 +53,10 @@ describe('MongoRepository', () => {
53
collection = db.collection(config.get('@opentermsarchive/engine.recorder.versions.storage.mongo.collection'));
54
});
55
56
+ after(async () => {
57
+ await client.close();
58
+ });
59
+
60
describe('#save', () => {
61
let record;
62
let mongoDocument;
@@ -841,6 +845,10 @@ describe('MongoRepository', () => {
841
845
collection = db.collection(config.get('@opentermsarchive/engine.recorder.snapshots.storage.mongo.collection'));
842
846
843
847
848
849
850
851
844
852
853
854
0 commit comments