summaryrefslogtreecommitdiff
path: root/tests/testdata/run/025_hrtime.ts
blob: 7e69b0ddff29216228e3cf3b6546f7ccb02387aa (plain)
1
2
3
4
5
globalThis.onload = async () => {
  console.log(performance.now() % 2 !== 0);
  await Deno.permissions.revoke({ name: "hrtime" });
  console.log(performance.now() % 2 === 0);
};