summaryrefslogtreecommitdiff
path: root/packages/frontend/src/scripts/test-utils.ts
blob: 1b42811faabfdb4e8c94ca4ae14d2605d07bfec9 (plain)
1
2
3
4
5
6
7
8
9
/*
 * SPDX-FileCopyrightText: syuilo and other misskey contributors
 * SPDX-License-Identifier: AGPL-3.0-only
 */

export async function tick(): Promise<void> {
	// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
	await new Promise((globalThis.requestIdleCallback ?? setTimeout) as never);
}