1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 14:04:08 +02:00

test(backend): polyfill position

This commit is contained in:
Acid Chicken (硫酸鶏)
2024-06-01 16:39:34 +09:00
parent 623eb410bb
commit 9366515565

View File

@@ -5,14 +5,14 @@
import { initTestDb, sendEnvResetRequest } from './utils.js';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
Symbol.dispose ??= Symbol('Symbol.dispose');
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
Symbol.asyncDispose ??= Symbol('Symbol.asyncDispose');
beforeAll(async () => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
Symbol.dispose ??= Symbol('Symbol.dispose');
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error
Symbol.asyncDispose ??= Symbol('Symbol.asyncDispose');
await Promise.all([
initTestDb(false),
sendEnvResetRequest(),