Skip to content

Commit

Permalink
doc: update test section in CONTRIBUTING.md
Browse files Browse the repository at this point in the history
test/simple no longer exists, tell contributors to add their tests to
test/parallel.

PR-URL: #1181
Reviewed-By: Jeremiah Senkpiel <[email protected]>
  • Loading branch information
bnoordhuis committed Mar 17, 2015
1 parent 3c8ae2d commit 69350ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ $ git rebase upstream/v1.x # or upstream/master
### Step 5: Test

Bug fixes and features **should come with tests**. Add your tests in the
test/simple/ directory. Look at other tests to see how they should be
test/parallel/ directory. Look at other tests to see how they should be
structured (license boilerplate, common includes, etc.).

```text
Expand All @@ -144,13 +144,13 @@ If you are updating tests and just want to run a single test to check it, you
can use this syntax to run it exactly as the test harness would:

```text
$ python tools/test.py -v --mode=release simple/test-stream2-transform
$ python tools/test.py -v --mode=release parallel/test-stream2-transform
```

You can run tests directly with node:

```text
$ node ./test/simple/test-streams2-transform.js
$ node ./test/parallel/test-streams2-transform.js
```


Expand Down

0 comments on commit 69350ba

Please sign in to comment.