mirror of
https://github.com/tauri-apps/deno.git
synced 2026-02-05 11:11:18 +01:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { testPerm, assert } from "./test_util.ts";
|
|
|
|
testPerm({ hrtime: false }, function now(): void {
|
|
const start = performance.now();
|
|
setTimeout((): void => {
|
|
const end = performance.now();
|
|
assert(end - start >= 10);
|
|
}, 10);
|
|
});
|