Skip to content

Commit 3efc4bc

Browse files
committed
Updated CONTRIBUTING.md with correct missing tests command.
1 parent df4dd04 commit 3efc4bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ This is a guide on how to contribute test cases to help with coverage testing fo
88
Currently there are a number of fields and functions in NodeGit that have no tests at all. A list of which files are missing and what fields and functions need tests can be generated by running
99

1010
``` bash
11-
npm run missing-tests
11+
npm run generateMissingTests
1212
```
1313

14-
This will make the file `generate/missing-tests.json` which will contain info for tests or files that are currently missing.
14+
This will make the file `generate/output/missing-tests.json` which will contain info for tests or files that are currently missing.
1515

1616
From this file you can find fields and functions that don't have any tests yet and pick one to work on.
1717

@@ -42,7 +42,7 @@ If a specific field or function is further wrapped via a file inside of `/lib` t
4242

4343
You can mark something to be ignored inside of the `/generate/missing-tests-ignore.json` file.
4444

45-
After you write your test make sure to run `npm run missing-tests` again to confirm that the field/function that a test was written for no longer shows up.
45+
After you write your test make sure to run `npm run generateMissingTests` again to confirm that the field/function that a test was written for no longer shows up.
4646

4747
## Test results ##
4848

0 commit comments

Comments
 (0)