mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-23 00:40:59 -05:00
17 lines
631 B
TypeScript
17 lines
631 B
TypeScript
import { NODE_MODULE_LOADER, DYNAMIC_MODULE_LOADER } from "@/utils/reflection/module-loader";
|
|
|
|
describe("NODE_MODULE_LOADER", () => {
|
|
test("returns undefined if a module cannot be loaded", async () => {
|
|
// https://github.com/nodejs/node/issues/35889
|
|
// Jest throws segfault if we try to actually test it, so...
|
|
expect(NODE_MODULE_LOADER).toBeDefined();
|
|
});
|
|
});
|
|
|
|
describe("DYNAMIC_MODULE_LOADER", () => {
|
|
test("returns undefined if a module cannot be loaded", async () => {
|
|
const loadedModule = await DYNAMIC_MODULE_LOADER("#");
|
|
|
|
expect(loadedModule).toBeUndefined();
|
|
});
|
|
});
|