65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
import type { Config } from "jest";
|
|
|
|
const config: Config = {
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
|
|
projects: [
|
|
{
|
|
displayName: "dom",
|
|
clearMocks: true,
|
|
moduleFileExtensions: [
|
|
"js",
|
|
"mjs",
|
|
"cjs",
|
|
"jsx",
|
|
"ts",
|
|
"tsx",
|
|
"json",
|
|
"node",
|
|
],
|
|
testEnvironment: "jsdom",
|
|
testMatch: ["**/*.test.tsx"],
|
|
transform: {
|
|
"^.+\\.tsx?$": ["ts-jest", { tsconfig: "tsconfig.json" }],
|
|
"^.+\\.(js|jsx|mjs)$": "babel-jest",
|
|
"^.+\\.(css|scss|sass|less)$": "jest-preview/transforms/css",
|
|
"^(?!.*\\.(js|jsx|mjs|cjs|ts|tsx|css|json)$)":
|
|
"jest-preview/transforms/file",
|
|
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$":
|
|
"<rootDir>/fileTransformer.ts",
|
|
},
|
|
transformIgnorePatterns: [
|
|
"/node_modules/(?!(preact|@fullcalendar|react-calendar|get-user-locale|memoize|mimic-function|@wojtekmaj|ky)/)",
|
|
],
|
|
|
|
moduleNameMapper: { "^preact(/(.*)|$)": "preact$1" },
|
|
setupFilesAfterEnv: ["<rootDir>/src/setupTests.ts"],
|
|
},
|
|
{
|
|
displayName: "node",
|
|
clearMocks: true,
|
|
moduleFileExtensions: [
|
|
"js",
|
|
"mjs",
|
|
"cjs",
|
|
"jsx",
|
|
"ts",
|
|
"tsx",
|
|
"json",
|
|
"node",
|
|
],
|
|
testEnvironment: "node",
|
|
testMatch: ["**/*.test.ts"],
|
|
transform: {
|
|
"^.+\\.tsx?$": ["ts-jest", { tsconfig: "tsconfig.json" }],
|
|
"^.+\\.(js|jsx|mjs)$": "babel-jest",
|
|
},
|
|
transformIgnorePatterns: ["/node_modules/(?!(ky)/)"],
|
|
setupFilesAfterEnv: ["<rootDir>/src/setupTests.ts"],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|