35ec41fc1e
* enhance(backend): テストの高速化 * add ls * 自動的にマージされるようなので不要 * 起動方法を揃える * fix test
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
|
|
|
beforeAll(async () => {
|
|
await Promise.all([
|
|
initTestDb(false),
|
|
sendEnvResetRequest(),
|
|
]);
|
|
});
|