blob: dfee02c45c1718044feaeb89bc87a5a4ae96ba7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { setUpDbAsync, tearDownDbAsync } from './db_setup';
before('set up database', async () => {
await setUpDbAsync();
});
after('tear down database', async () => {
await tearDownDbAsync();
});
|