2024-03-13 13:37:18 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2024-01-08 08:43:52 +00:00
|
|
|
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
|
|
|
await Promise.all([
|
|
|
|
initTestDb(false),
|
|
|
|
sendEnvResetRequest(),
|
|
|
|
]);
|
|
|
|
});
|