UNPKG

@ledgerhq/coin-canton

Version:
22 lines (21 loc) 756 B
/** @type {import('ts-jest/dist/types').JestConfigWithTsJest} */ // `workerThreads: true` is required for validating object with `bigint` values module.exports = { preset: "ts-jest", testEnvironment: "node", passWithNoTests: true, setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"], collectCoverageFrom: [ "src/**/*.ts", "!src/**/*.test.ts", "!src/**/*.spec.ts", "!src/test/**/*.ts", ], coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"], testPathIgnorePatterns: ["lib/", "lib-es/", ".*\\.integ\\.test\\.[tj]s"], workerThreads: true, reporters: [ "default", ["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }], ], };