1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00
denoland-deno/tests/unit/intl_test.ts

8 lines
282 B
TypeScript
Raw Normal View History

2025-01-01 04:12:39 +09:00
// Copyright 2018-2025 the Deno authors. 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);
});