UNPKG

@ledgerhq/coin-stellar

Version:
28 lines (27 loc) 711 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"], testEnvironment: "node", transform: { "^.+\\.(ts|tsx)$": [ "@swc/jest", { jsc: { target: "esnext", }, }, ], }, testPathIgnorePatterns: ["lib/", "lib-es/", ".*\\.integ\\.test\\.[tj]s"], reporters: [ "default", ["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }], ], //setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"], };