8 lines
176 B
JavaScript
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)
|
|
})
|
|
}
|