@aerocorp/cli
Version:
AeroCorp CLI 5.1.0 - Future-Proofed Enterprise Infrastructure with Live Preview, Tunneling & Advanced DevOps
21 lines • 608 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// Test setup file
const globals_1 = require("@jest/globals");
// Mock console methods to reduce noise in tests
global.console = {
...console,
log: globals_1.jest.fn(),
warn: globals_1.jest.fn(),
error: globals_1.jest.fn(),
info: globals_1.jest.fn(),
debug: globals_1.jest.fn(),
};
// Set test environment variables
process.env.NODE_ENV = 'test';
process.env.AEROCORP_TEST_MODE = 'true';
// Clean up after each test
afterEach(() => {
globals_1.jest.clearAllMocks();
});
//# sourceMappingURL=setup.js.map