UNPKG

@ledgerhq/coin-ton

Version:
25 lines (24 loc) 838 B
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */ module.exports = { passWithNoTests: true, collectCoverageFrom: [ "src/**/*.ts", "!src/**/*.test.ts", "!src/**/*.spec.ts", "!src/test/**/*.ts", ], coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"], prettierPath: null, preset: "ts-jest", testEnvironment: "node", testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"], modulePathIgnorePatterns: [ "__tests__/fixtures", "__tests__/integration/bridge.integration.test.ts", // this file is tested at the live-common level ], reporters: [ "default", ["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }], ], // setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"], };