react-circle-slider
Version:
Circle Slider UI component for React
19 lines (17 loc) • 576 B
JavaScript
const TEST_REGEX = "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|js?|tsx?|ts?)$";
module.exports = {
setupFiles: ["<rootDir>/jest.setup.js"],
snapshotSerializers: ["<rootDir>/node_modules/enzyme-to-json/serializer"],
globals: {
"ts-jest": {
// useBabelrc: true,
tsConfigFile: "tsconfig.jest.json",
},
},
testRegex: TEST_REGEX,
transform: {
"^.+\\.tsx?$": "ts-jest",
},
testPathIgnorePatterns: ["<rootDir>/node_modules/"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
};