blob: 45cb133b287b6c029fe3273a55ad5141e30b492f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals, loadTestLibrary } from "./common.js";
const strings = loadTestLibrary();
Deno.test("napi string utf8", function () {
assertEquals(strings.test_utf8(""), "");
assertEquals(strings.test_utf8("🦕"), "🦕");
});
Deno.test("napi string", function () {
assertEquals(strings.test_utf16(""), "");
assertEquals(strings.test_utf16("🦕"), "🦕");
});
|