8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const jestConfig: Config = {
|
|
preset: 'jest-preset-angular',
|
|
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
|
|
};
|
|
|
|
export default jestConfig; |