Files
keyvault/client/jest.config.ts
Bastian Wagner 819af7455b Testing
2024-11-28 16:59:23 +01:00

11 lines
270 B
TypeScript

import type { Config } from 'jest';
const jestConfig: Config = {
preset: 'jest-preset-angular',
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
moduleNameMapper: {
'@ngxpert/hot-toast': '<rootDir>/mocks/modules/hot-toast',
},
};
export default jestConfig;