2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
|
|
|
assertRejects,
|
2023-01-14 22:36:55 -05:00
|
|
|
assertThrows,
|
2022-10-05 10:06:44 -04:00
|
|
|
} 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}`;
|
2023-02-01 09:41:04 -05:00
|
|
|
|
|
|
|
// Internal, used in ext/node
|
|
|
|
return Deno[Deno.internal].core.ops.op_napi_open(specifier, {
|
|
|
|
Buffer: {},
|
|
|
|
});
|
2022-10-05 10:06:44 -04:00
|
|
|
}
|