summaryrefslogtreecommitdiff
path: root/js/performance_test.ts
blob: 154dadbbe8201dc7ea93cb2bace6073bf4774379 (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { test, assert } from "./test_util.ts";

test(function now() {
  const start = performance.now();
  setTimeout(() => {
    const end = performance.now();
    assert(end - start >= 10);
  }, 10);
});