Skip to content

Commit 5a12638

Browse files
committed
docs: adds note about test coverage
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 9c3057f commit 5a12638

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lesson_10/libraries/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "node build/lesson10.js",
88
"dev": "tsc-watch --noClear -p ./tsconfig.build.json --onSuccess \"node ./build/lesson10.js\"",
9-
"test": "node --experimental-vm-modules node_modules/.bin/jest",
9+
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
1010
"compile": "tsc -p tsconfig.build.json",
1111
"prepare": "npm run compile",
1212
"pretest": "npm run compile",
@@ -42,4 +42,4 @@
4242
"csv-parser": "^3.0.0",
4343
"uuid": "^10.0.0"
4444
}
45-
}
45+
}

project_oop/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Before starting work on your project, you will need to submit three user stories
1616
* Must include at least 5 types of objects with meaningful relattionships to each other.
1717
* One of your objects must be a custom data structure that provides for adding, removing, and updating items in a collection.
1818
* Implement at least two custom exceptions.
19-
* Write unit tests achieving 90% code coverage.
19+
* Write unit tests achieving 90% code coverage (using JaCoCo for Java or Jest for Typescript).
2020
* Must include an integration test.
2121
* Your solution must illustrate each of the SOLID principles.
2222
* Each team member must contribute *at least one* submitted pull request containing working code and tests.

0 commit comments

Comments
 (0)