Skip to content

Commit

Permalink
Merge pull request #8 from arobsn/increase-coverage
Browse files Browse the repository at this point in the history
Increase code coverage
  • Loading branch information
arobsn authored Jul 2, 2024
2 parents e65af35 + b710a3f commit 66896e7
Show file tree
Hide file tree
Showing 8 changed files with 1,498 additions and 201 deletions.
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
},
"suspicious": {
"noConsoleLog": { "level": "error" },
"noAssignInExpressions": { "level": "off" }
"noAssignInExpressions": { "level": "off" },
"noConstEnum": { "level": "off" }
}
}
}
Expand Down
185 changes: 0 additions & 185 deletions jest.config.js

This file was deleted.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,26 @@
"test:lint": "biome lint",
"test:format": "biome format",
"test:unit": "vitest run --no-coverage --environment=node",
"watch:unit": "vitest --no-coverage --reporter=dot"
"watch:unit": "vitest --no-coverage --reporter=dot",
"cov:check": "vitest run --coverage",
"cov:open": "vitest run --coverage ; open-cli coverage/index.html"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@fleet-sdk/core": "0.1.0-alpha.12",
"@ledgerhq/hw-transport": "^6.27.7",
"base-x": "^4.0.0",
"bip32-path": "^0.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@ledgerhq/hw-transport": "^6.31.0",
"@ledgerhq/hw-transport-mocker": "^6.29.0",
"@types/node": "^20.14.9",
"@types/typescript": "^2.0.0",
"@vitest/coverage-v8": "^1.6.0",
"open-cli": "^8.0.0",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "^1.6.0"
Expand Down
Loading

0 comments on commit 66896e7

Please sign in to comment.