blob: 10475d973309ea4b6b1b6ad25418897afbb5bcea (
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(): void {
assert(navigator.hardwareConcurrency > 0);
});
|