Skip to content

Commit

Permalink
Merge branch 'master' of github.com:travis-ci/travis-ci.github.com
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Mar 13, 2012
2 parents 9f70820 + 8351efa commit 53ffc4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/user/languages/javascript-with-nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ to run your test suite.

You can tell npm how to run your test suite by adding a line in package.json. For example, to test using Vows:

scripts: {
test: "vows --spec"
"scripts": {
"test": "vows --spec"
},


### Using Expresso

To test using Expresso:

scripts: {
test: "expresso test/*"
"scripts": {
"test": "expresso test/*"
},

Keeping the test script configuration in package.json makes it easy for other people to collaborate on your project, all they need to remember is the `npm test` convention.
Expand Down

0 comments on commit 53ffc4e

Please sign in to comment.