monkeytype/frontend/jest.config.ts
2024-02-07 16:11:07 +01:00

10 lines
429 B
TypeScript

import { defaults as tsjPreset } from "ts-jest/presets";
export default {
preset: "ts-jest",
transform: tsjPreset.transform,
testEnvironment: "jsdom",
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
};