Migrate to a monorepo structure (#2909)
This commit is contained in:
4
packages/twenty-front/src/testing/sleep.ts
Normal file
4
packages/twenty-front/src/testing/sleep.ts
Normal file
@ -0,0 +1,4 @@
|
||||
export const sleep = async (ms: number) =>
|
||||
new Promise((resolve) => {
|
||||
setTimeout(resolve, ms);
|
||||
});
|
||||
Reference in New Issue
Block a user