mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
|
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
await Promise.all([
|
||
|
initTestDb(false),
|
||
|
sendEnvResetRequest(),
|
||
|
]);
|
||
|
});
|