|
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
|
|
|
beforeAll(async () => {
|
|
await Promise.all([
|
|
initTestDb(false),
|
|
sendEnvResetRequest(),
|
|
]);
|
|
});
|