@ledgerhq/hw-app-canton
Version:
Ledger Hardware Wallet Canton Application API
26 lines (24 loc) • 631 B
text/typescript
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",
},
],
],
};