UNPKG

@plugjs/expect5

Version:

Unit Testing for the PlugJS Build System ========================================

41 lines (40 loc) 711 B
// index.ts import { installForking } from "@plugjs/plug/fork"; import { requireResolve } from "@plugjs/plug/paths"; import { skip } from "./execution/executable.mjs"; import { afterAll, afterEach, beforeAll, beforeEach, describe, fdescribe, fit, it, xafterAll, xafterEach, xbeforeAll, xbeforeEach, xdescribe, xit } from "./execution/setup.mjs"; export * from "./expectation/expect.mjs"; installForking("test", requireResolve(import.meta.url, "./test"), "Test"); export { afterAll, afterEach, beforeAll, beforeEach, describe, fdescribe, fit, it, skip, xafterAll, xafterEach, xbeforeAll, xbeforeEach, xdescribe, xit }; //# sourceMappingURL=index.mjs.map