mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-14 19:46:29 +08:00
10 lines
401 B
TypeScript
10 lines
401 B
TypeScript
|
import { defaults as tsjPreset } from "ts-jest/presets";
|
||
|
|
||
|
export default {
|
||
|
preset: "ts-jest",
|
||
|
transform: tsjPreset.transform,
|
||
|
setupFilesAfterEnv: ["<rootDir>/__tests__/setup-tests.ts"],
|
||
|
modulePathIgnorePatterns: ["<rootDir>/__tests__/setup-tests.ts"],
|
||
|
testRegex: "(/__tests__/.*|(\\.|/)(spec))\\.[jt]sx?$", //prevent files like test.ts outside the __tests__ folder to be detected as test
|
||
|
};
|