archunit
Version:
ArchUnit TypeScript is an architecture testing library, to specify and assert architecture rules in your TypeScript app
16 lines • 900 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// Auto-detect and setup all available testing frameworks
const jest_1 = require("../jest");
//import { extendJasmineMatchers } from '../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)(false); // Only sets up if Jest is available
//extendJasmineMatchers(false); // Only sets up if Jasmine is available
(0, vitest_1.extendVitestMatchers)(false); // 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