blob: e2e3cb647fd3f9408517466575ba41b33cd49a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2018-2023 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("🦕"), "🦕");
});
|