From 69350baaef127a3826674d88fd2a76ca72985bad Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 17 Mar 2015 20:46:32 +0100 Subject: [PATCH] doc: update test section in CONTRIBUTING.md test/simple no longer exists, tell contributors to add their tests to test/parallel. PR-URL: https://github.com/iojs/io.js/pull/1181 Reviewed-By: Jeremiah Senkpiel --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0df7516f7d..c88e3c7b90 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 @@ -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 ```