mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 17:33:08 +02:00
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(),
|
|
]);
|
|
});
|