blob: 6357d4c5604a08cdab7952049a58a89e002fa118 (
plain)
1
2
3
4
5
6
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assert, unitTest } from "./test_util.ts";
unitTest(function navigatorNumCpus() {
assert(navigator.hardwareConcurrency > 0);
});
|