summaryrefslogtreecommitdiff
path: root/cli/tests/unit/navigator_test.ts
blob: ba7c2609a60d44279dde168c9f8c22eb0c9e2941 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { assert } from "./test_util.ts";

Deno.test(function navigatorNumCpus() {
  assert(navigator.hardwareConcurrency > 0);
});

Deno.test(function navigatorUserAgent() {
  const pattern = /Deno\/\d+\.\d+\.\d+/;
  assert(pattern.test(navigator.userAgent));
});