mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Removed unnecessary async
This commit is contained in:
parent
4823b4cc14
commit
98e9aced20
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
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 () => {
|
||||
test("returns undefined if a module cannot be loaded", () => {
|
||||
// https://github.com/nodejs/node/issues/35889
|
||||
// Jest throws segfault if we try to actually test it, so...
|
||||
expect(NODE_MODULE_LOADER).toBeDefined();
|
||||
|
|
Loading…
Reference in a new issue