diff options
Diffstat (limited to 'cli/tests/025_hrtime.ts')
-rw-r--r-- | cli/tests/025_hrtime.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/025_hrtime.ts b/cli/tests/025_hrtime.ts index 9f60b7a77..b69d61488 100644 --- a/cli/tests/025_hrtime.ts +++ b/cli/tests/025_hrtime.ts @@ -1,4 +1,4 @@ -window.onload = async (): Promise<void> => { +window.onload = async () => { console.log(performance.now() % 2 !== 0); await Deno.permissions.revoke({ name: "hrtime" }); console.log(performance.now() % 2 === 0); |