bugfix, ts target stuff

This commit is contained in:
2025-03-11 22:59:00 -07:00
parent a74ffc453e
commit a6ecf7df88
4 changed files with 8 additions and 9 deletions

View File

@@ -3,5 +3,3 @@ export const sleep = (ms: number): Promise<unknown> =>
export const randomBool = (chance_of_failure = 0.25): boolean =>
Math.random() < chance_of_failure;
new Promise((resolve) => setTimeout(resolve, 100));