UNPKG

@ledgerhq/coin-ton

Version:
33 lines (32 loc) 894 B
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, testEnvironment: "node", transform: { "^.+\\.(ts|tsx)$": [ "@swc/jest", { jsc: { target: "esnext", }, }, ], }, 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"], };