mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-23 12:01:12 -05:00
13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
import type { Config } from 'jest';
|
|
|
|
const config: Config = {
|
|
verbose: true,
|
|
testRegex: '\\.test\\.ts$',
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
setupFilesAfterEnv: ['<rootDir>/jest.start-server.ts']
|
|
};
|
|
|
|
export default config;
|