summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/025_hrtime.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/025_hrtime.ts')
-rw-r--r--cli/tests/testdata/run/025_hrtime.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/tests/testdata/run/025_hrtime.ts b/cli/tests/testdata/run/025_hrtime.ts
deleted file mode 100644
index b69d61488..000000000
--- a/cli/tests/testdata/run/025_hrtime.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-window.onload = async () => {
- console.log(performance.now() % 2 !== 0);
- await Deno.permissions.revoke({ name: "hrtime" });
- console.log(performance.now() % 2 === 0);
-};