summaryrefslogtreecommitdiff
path: root/cli/tests/unit/intl_test.ts
blob: 788dd3c650d0100e24ac3457d6bede61523cbf38 (plain)
1
2
3
4
5
6
7
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "./test_util.ts";

Deno.test("Intl.v8BreakIterator should be undefined", () => {
  // @ts-expect-error Intl.v8BreakIterator is not a standard API
  assertEquals(Intl.v8BreakIterator, undefined);
});