11 lines
270 B
TypeScript
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; |