UNPKG

@ledgerhq/coin-internet_computer

Version:
28 lines (27 loc) 721 B
module.exports = { passWithNoTests: true, collectCoverageFrom: [ "src/**/*.ts", "!src/**/*.test.ts", "!src/**/*.spec.ts", "!src/test/**/*.ts", ], transform: { "^.+\\.(ts|tsx)$": [ "@swc/jest", { jsc: { target: "esnext", }, }, ], }, coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"], testEnvironment: "node", testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts", "\\.integ\\.test\\.ts$"], reporters: [ "default", ...(process.env.CI ? ["github-actions"] : []), ["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }], ], };