Files
hammond/ui/tests/unit/global-teardown.js
Akhil Gupta d25c30a7b2 first commit
2021-05-29 15:20:50 +05:30

8 lines
176 B
JavaScript

// Shut down the mock API once all the tests are complete.
module.exports = () => {
return new Promise((resolve, reject) => {
global.mockApiServer.close(resolve)
})
}