UNPKG

archunit

Version:

ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app

16 lines 885 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // Auto-detect and setup all available testing frameworks const jest_1 = require("../jest"); const jasmine_1 = require("../jasmine"); const vitest_1 = require("../vitest"); // Auto-detect and setup all available testing frameworks // Each adapter function already includes conditional checks for framework availability (0, jest_1.extendJestMatchers)(); // Only sets up if Jest is available (0, jasmine_1.extendJasmineMatchers)(); // Only sets up if Jasmine is available (0, vitest_1.extendVitestMatchers)(); // Only sets up if Vitest is available // TODO: not working yet, needs work //extendMochaMatchers(); // Only sets up if Mocha is available //extendQUnitMatchers(); // Only sets up if QUnit is available //extendAvaMatchers(); // Only sets up if Ava is available //# sourceMappingURL=auto-detect.js.map