@ledgerhq/coin-algorand
Version:
Ledger Algorand Coin integration
21 lines (20 loc) • 678 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",
"!src/__tests__/**/*.ts",
],
coverageReporters: ["json", ["lcov", { file: "lcov.info", projectRoot: "../../../" }], "text"],
testEnvironment: "node",
testPathIgnorePatterns: ["lib/", "lib-es/", ".integration.test.ts"],
reporters: [
"default",
["jest-sonar", { outputName: "sonar-executionTests-report.xml", reportedFilePath: "absolute" }],
],
setupFilesAfterEnv: ["@ledgerhq/disable-network-setup"],
};