@iota-big3/sdk-security
Version:
Advanced security features including zero trust, quantum-safe crypto, and ML threat detection
23 lines • 547 B
JavaScript
;
// Test setup for @iota-big3/sdk-security
// This file is run before each test
// Set test environment
process.env.NODE_ENV = 'test';
// Mock console methods to reduce noise during tests
global.console = {
...console,
log: jest.fn(),
debug: jest.fn(),
info: jest.fn(),
warn: jest.fn(),
error: jest.fn(),
};
// Add any global test utilities or mocks here
beforeEach(() => {
jest.clearAllMocks();
});
// Cleanup after tests
afterEach(() => {
jest.restoreAllMocks();
});
//# sourceMappingURL=setup.js.map