@ledgerhq/coin-hedera
Version:
Ledger Hedera Coin integration
22 lines (21 loc) • 653 B
JavaScript
/** @type {import('ts-jest/dist/types').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
passWithNoTests: true,
collectCoverageFrom: [
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.spec.ts",
"!src/test/**/*.ts",
],
coverageReporters: ["json", ["lcov", { file: "hedera-lcov.info", projectRoot: "../" }], "text"],
testEnvironment: "node",
testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
modulePathIgnorePatterns: ["__tests__/fixtures"],
reporters: [
[
"jest-sonar",
{ outputName: "hedera-sonar-executionTests-report.xml", reportedFilePath: "absolute" },
],
],
};