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