blob: dfee02c45c1718044feaeb89bc87a5a4ae96ba7b (
plain) (
tree)
|
|
import { setUpDbAsync, tearDownDbAsync } from './db_setup';
before('set up database', async () => {
await setUpDbAsync();
});
after('tear down database', async () => {
await tearDownDbAsync();
});
|