credl-parser-evaluator
Version:
TypeScript-based CREDL Parser and Evaluator that processes CREDL files and outputs complete Intermediate Representations
16 lines • 637 B
JavaScript
;
// Test setup file for Jest configuration
// This file runs before all tests and can be used to set up global test utilities
Object.defineProperty(exports, "__esModule", { value: true });
// Global test timeout configuration
jest.setTimeout(10000);
// Mock console methods for cleaner test output if needed
// Suppress console errors and warnings during tests unless explicitly needed
beforeEach(() => {
jest.spyOn(console, 'error').mockImplementation(() => { });
jest.spyOn(console, 'warn').mockImplementation(() => { });
});
afterEach(() => {
jest.restoreAllMocks();
});
//# sourceMappingURL=test-setup.js.map