shorter name for frequent command, npm run coverage

This commit is contained in:
Ladd Hoffman 2024-12-26 16:55:14 -06:00
parent c3f896f130
commit cc33e4d694
3 changed files with 29 additions and 29 deletions

View File

@ -58,7 +58,7 @@ npm run test
## Run test coverage report ## Run test coverage report
```bash ```bash
npm run test:coverage npm run coverage
``` ```
## Run multiple live nodes locally as separate processes ## Run multiple live nodes locally as separate processes

View File

@ -2,37 +2,37 @@
> rhizome-node@1.0.0 test > rhizome-node@1.0.0 test
> jest --coverage > jest --coverage
PASS __tests__/lossy.ts
PASS __tests__/lossless.ts
PASS __tests__/peer-address.ts PASS __tests__/peer-address.ts
PASS __tests__/run/002-two-nodes.ts PASS __tests__/lossless.ts
PASS __tests__/lossy.ts
PASS __tests__/run/001-single-node.ts PASS __tests__/run/001-single-node.ts
----------------------|---------|----------|---------|---------|---------------------------------------------------- PASS __tests__/run/002-two-nodes.ts
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s ----------------------|---------|----------|---------|---------|------------------------------------------------
----------------------|---------|----------|---------|---------|---------------------------------------------------- File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
All files | 86.86 | 62.41 | 82.7 | 87.38 | ----------------------|---------|----------|---------|---------|------------------------------------------------
src | 87.94 | 68.06 | 82.45 | 88.09 | All files | 86.75 | 61.97 | 83.58 | 87.26 |
collection.ts | 88.31 | 71.42 | 66.66 | 90.54 | 62-65,114-122,172 src | 88.35 | 68.06 | 84.21 | 88.52 |
config.ts | 94.44 | 89.65 | 50 | 94.44 | 22 collection.ts | 89.61 | 71.42 | 73.33 | 91.89 | 62-65,114-122
deltas.ts | 64.44 | 50 | 76.92 | 64.44 | 27-30,42-46,55-56,64-73 config.ts | 94.44 | 89.65 | 50 | 94.44 | 22
entity.ts | 100 | 100 | 100 | 100 | deltas.ts | 64.44 | 50 | 76.92 | 64.44 | 27-30,42-46,55-56,64-73
http-api.ts | 59.7 | 13.04 | 38.88 | 59.7 | 32,37,44-60,66,79-80,85-92,100,121,129-130,145-151 entity.ts | 100 | 100 | 100 | 100 |
lossless.ts | 98.27 | 91.66 | 100 | 100 | 96 http-api.ts | 61.19 | 13.04 | 44.44 | 61.19 | 32,37,44-60,66,79-80,85-92,100,129-130,145-151
lossy.ts | 100 | 85.71 | 100 | 100 | 38 lossless.ts | 98.27 | 91.66 | 100 | 100 | 96
node.ts | 100 | 100 | 100 | 100 | lossy.ts | 100 | 85.71 | 100 | 100 | 38
peers.ts | 96.82 | 100 | 100 | 96.61 | 125-126 node.ts | 100 | 100 | 100 | 100 |
pub-sub.ts | 100 | 100 | 100 | 100 | peers.ts | 96.82 | 100 | 100 | 96.61 | 125-126
request-reply.ts | 95.65 | 0 | 100 | 95.34 | 46,59 pub-sub.ts | 100 | 100 | 100 | 100 |
typed-collection.ts | 100 | 100 | 100 | 100 | request-reply.ts | 95.65 | 0 | 100 | 95.34 | 46,59
types.ts | 100 | 100 | 100 | 100 | typed-collection.ts | 100 | 100 | 100 | 100 |
src/util | 74.54 | 31.81 | 82.35 | 78 | types.ts | 100 | 100 | 100 | 100 |
md-files.ts | 74.54 | 31.81 | 82.35 | 78 | 52-56,90-94,108-115 src/util | 70.68 | 30.43 | 77.77 | 73.58 |
util | 100 | 100 | 100 | 100 | md-files.ts | 70.68 | 30.43 | 77.77 | 73.58 | 53-57,74-77,98-102,116-123
app.ts | 100 | 100 | 100 | 100 | util | 100 | 100 | 100 | 100 |
----------------------|---------|----------|---------|---------|---------------------------------------------------- app.ts | 100 | 100 | 100 | 100 |
----------------------|---------|----------|---------|---------|------------------------------------------------
Test Suites: 5 passed, 5 total Test Suites: 5 passed, 5 total
Tests: 7 passed, 7 total Tests: 7 passed, 7 total
Snapshots: 0 total Snapshots: 0 total
Time: 3.709 s, estimated 5 s Time: 3.835 s, estimated 5 s
Ran all test suites. Ran all test suites.

View File

@ -8,7 +8,7 @@
"build:watch": "tsc --watch", "build:watch": "tsc --watch",
"lint": "eslint", "lint": "eslint",
"test": "jest", "test": "jest",
"test:coverage": "./scripts/coverage.sh" "coverage": "./scripts/coverage.sh"
}, },
"jest": { "jest": {
"testEnvironment": "node", "testEnvironment": "node",