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