mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:33:09 +02:00
7 lines
250 B
TypeScript
7 lines
250 B
TypeScript
|
/// <reference types="@testing-library/jest-dom"/>
|
||
|
|
||
|
export async function tick(): Promise<void> {
|
||
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||
|
await new Promise((globalThis.requestIdleCallback ?? setTimeout) as never);
|
||
|
}
|