mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
abd9610530
This commit removes "Deno.core" namespace. It is strictly private API that has no stability guarantees, we were supposed to remove it long time ago. Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
21 lines
641 B
JavaScript
21 lines
641 B
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
export {
|
|
assert,
|
|
assertEquals,
|
|
assertRejects,
|
|
assertThrows,
|
|
} from "../test_util/std/testing/asserts.ts";
|
|
export { fromFileUrl } from "../test_util/std/path/mod.ts";
|
|
|
|
const targetDir = Deno.execPath().replace(/[^\/\\]+$/, "");
|
|
const [libPrefix, libSuffix] = {
|
|
darwin: ["lib", "dylib"],
|
|
linux: ["lib", "so"],
|
|
windows: ["", "dll"],
|
|
}[Deno.build.os];
|
|
|
|
export function loadTestLibrary() {
|
|
const specifier = `${targetDir}/${libPrefix}test_napi.${libSuffix}`;
|
|
return Deno[Deno.internal].core.ops.op_napi_open(specifier); // Internal, used in ext/node
|
|
}
|