setup.ts 421 B

1234567891011121314151617181920212223
  1. /**
  2. * Jest setup file for credential manager tests
  3. */
  4. // Global test setup
  5. global.console = {
  6. ...console,
  7. // Suppress console.log during tests unless specifically needed
  8. log: jest.fn(),
  9. debug: jest.fn(),
  10. info: jest.fn(),
  11. warn: console.warn,
  12. error: console.error,
  13. }
  14. // Setup for credential manager tests
  15. beforeAll(() => {
  16. // Global setup if needed
  17. })
  18. afterAll(() => {
  19. // Global cleanup if needed
  20. })