diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/tests/unit/intl_test.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/unit/intl_test.ts b/cli/tests/unit/intl_test.ts new file mode 100644 index 000000000..788dd3c65 --- /dev/null +++ b/cli/tests/unit/intl_test.ts @@ -0,0 +1,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); +}); |