Skip to content

Commit c326e50

Browse files
authored
Merge pull request #88 from Sykander/nyc
Nyc
2 parents 248aa5d + 71fd753 commit c326e50

File tree

5 files changed

+977
-1
lines changed

5 files changed

+977
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules
22
.env
33
.DS_Store
4+
.nyc_output
45
logs
56
test/typings.js

.nycrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"branches": 80,
3+
"lines": 80,
4+
"functions": 80,
5+
"statements": 80
6+
}

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ Development is open to contribution, check the project board "Development" for t
5656
| test:unit-tests | Runs only unit tests and returns a report on which pass/fail |
5757
| test:code-style | Runs only code checks and returns a report on which pass/fail |
5858
| test:type-definitions | Attempts to compile and run a typescript file using this module |
59+
| test:coverage | Creates a testing coverage report and checks that testing meets minimum requirements |
60+
| test:coverage-report | Creates a testing coverage report |
61+
| test:coverage-check | Checks the last test coverage report to see if testing coverage meets the minimum requirements |
5962

6063
Eg. to run all lint tests
6164
```

0 commit comments

Comments
 (0)