1234567891011121314151617181920212223 |
- /**
- * Jest setup file for credential manager tests
- */
- // Global test setup
- global.console = {
- ...console,
- // Suppress console.log during tests unless specifically needed
- log: jest.fn(),
- debug: jest.fn(),
- info: jest.fn(),
- warn: console.warn,
- error: console.error,
- }
- // Setup for credential manager tests
- beforeAll(() => {
- // Global setup if needed
- })
- afterAll(() => {
- // Global cleanup if needed
- })
|