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