UNPKG

@ledgerhq/hw-app-canton

Version:
26 lines (24 loc) 631 B
import baseConfig from "../../jest.config"; export default { ...baseConfig, rootDir: __dirname, testPathIgnorePatterns: [...baseConfig.testPathIgnorePatterns, ".*\\.integ\\.test\\.[tj]s"], collectCoverageFrom: [ "src/**/*.ts", "!src/**/*.test.{ts,tsx}", "!src/**/*.spec.{ts,tsx}", "!src/**/__tests__/**", "!tests/**", ], coverageReporters: ["json", ["lcov", { projectRoot: "../../../../" }], "json-summary", "text"], reporters: [ "default", [ "jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute", }, ], ], };