89493893d1
- this cleans up all imports or variables that aren't currently being used - this really helps keep the tests clean by only allowing what is needed - I've left `should` as an exemption for now because we need to clean up how it is used
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
/**
|
|
* Teardown the environment
|
|
*/
|
|
const teardown = async () => {
|
|
// @NOTE: local environment should probably drop the db state here
|
|
};
|
|
|
|
module.exports = teardown;
|