@adaptivestone/framework 4.11.2 → 4.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/tests/setup.js +1 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/tests/setup.js
CHANGED
|
@@ -107,13 +107,11 @@ afterAll(async () => {
|
|
|
107
107
|
global.server.app.httpServer.shutdown();
|
|
108
108
|
global.server.app.events.emit('shutdown');
|
|
109
109
|
}
|
|
110
|
-
|
|
110
|
+
|
|
111
111
|
if (typeof global.testSetup.afterAll === 'function') {
|
|
112
112
|
await global.testSetup.afterAll();
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
await mongoose.disconnect();
|
|
116
116
|
await mongoMemoryServerInstance.stop();
|
|
117
|
-
|
|
118
|
-
// }, 2000);
|
|
119
117
|
});
|