We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f9fca6 + 9cd4c56 commit f47a9eaCopy full SHA for f47a9ea
3 files changed
README.md
@@ -19,9 +19,19 @@ npm install nodehl7 --save
19
To run tests:
20
```bash
21
npm test
22
+```
23
24
+To run tests with code coverage:
25
+```bash
26
+npm run coverage
27
```
28
29
+This will generate coverage reports in the `coverage/` directory:
30
+- `coverage/lcov.info` - LCOV format for CI/GitHub Actions integration
31
+- `coverage/lcov-report/index.html` - HTML report for local viewing
32
+- `coverage/coverage-final.json` - JSON format for programmatic access
33
+
34
35
36
```javascript
37
const Hl7lib = require('nodehl7');
0 commit comments