mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 11:56:29 +00:00
49117afb72
* refactor: front-end testing with vitest * fix: fix build failed
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
const globalTimeout = global.setTimeout;
|
|
|
|
export const sleep = async (timeout = 0) => {
|
|
await new Promise((resolve) => {
|
|
globalTimeout(resolve, timeout);
|
|
});
|
|
};
|