mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
35ec41fc1e
* enhance(backend): テストの高速化 * add ls * 自動的にマージされるようなので不要 * 起動方法を揃える * fix test
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
|
|
|
beforeAll(async () => {
|
|
await Promise.all([
|
|
initTestDb(false),
|
|
sendEnvResetRequest(),
|
|
]);
|
|
});
|