1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-10 08:09:06 -05:00
denoland-deno/tests/napi/strings_test.js
2024-12-31 19:12:39 +00:00

15 lines
435 B
JavaScript

// Copyright 2018-2025 the Deno authors. 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("🦕"), "🦕");
});