mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-24 07:06:26 +09:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { initTestDb, sendEnvResetRequest } from './utils.js';
|
|
|
|
beforeAll(async () => {
|
|
await initTestDb(false);
|
|
await sendEnvResetRequest();
|
|
});
|