blob: 6e4de378c94d3b3f6ef5cfeb908e3d09f7a0eb53 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2024 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);
});
|