mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-09 16:24:51 +00:00
14 lines
459 B
TypeScript
14 lines
459 B
TypeScript
|
import type { JestConfigWithTsJest } from "ts-jest";
|
||
|
|
||
|
const config: JestConfigWithTsJest = {
|
||
|
preset: "ts-jest",
|
||
|
testEnvironment: "jsdom",
|
||
|
collectCoverage: true,
|
||
|
coveragePathIgnorePatterns: ["node_modules", "dist"],
|
||
|
coverageDirectory: "<rootDir>/coverage/",
|
||
|
coverageReporters: ["html", "text", "text-summary", "cobertura"],
|
||
|
extensionsToTreatAsEsm: [".ts", ".tsx"],
|
||
|
setupFilesAfterEnv: ["<rootDir>/src/jest.setup.ts"],
|
||
|
};
|
||
|
export default config;
|