@@ -109,9 +109,9 @@ the API where possible, to make it easier to digest.
109109Tests are simply exported from a module, but they are still run in the order
110110they are defined.
111111
112- __ Note:__ Users of old nodeunit versions may remember using ` ok ` , ` equals ` and
113- ` same ` in the style of qunit, instead of the assert functions above. These
114- functions still exist for backwards compatibility, and are simply aliases to
112+ __ Note:__ Users of old nodeunit versions may remember using ` ok ` , ` equals ` and
113+ ` same ` in the style of qunit, instead of the assert functions above. These
114+ functions still exist for backwards compatibility, and are simply aliases to
115115their assert module counterparts.
116116
117117
@@ -233,6 +233,8 @@ is used.
233233* __ --config FILE__ - load config options from a JSON file, allows
234234the customisation of color schemes for the default test reporter etc. See
235235bin/nodeunit.json for current available options.
236+ * __ -t testName__ - run specifc test only.
237+ * __ -f fullTestName__ - run specific test only. fullTestName is built so: "outerGroup - .. - innerGroup - testName".
236238* __ --version__ or __ -v__ - report nodeunit version
237239* __ --help__ - show nodeunit help
238240
@@ -412,7 +414,7 @@ context when setting up the sandbox.
412414 var box_globals = {
413415 // Passing module.exports into the sandbox will give your code access to it.
414416 module: {exports: exports},
415- // Passing require into the sandbox will give your code access to use it AND
417+ // Passing require into the sandbox will give your code access to use it AND
416418 // will share the cache with modules already required from outside the sandbox.
417419 require: require,
418420 // Passing console into the sandbox will give your code access to it
@@ -440,7 +442,7 @@ to v0.2.1 fixes this.
440442__ machineout__ reporter
441443----------------------------------------------
442444
443- The default reporter is readable for human but not for machine analysis.
445+ The default reporter is readable for human but not for machine analysis.
444446When you want to analyze the output of nodeunit, use __ machineout__ reporter and you will get
445447
446448<img src =" https://github.com/caolan/nodeunit/raw/master/img/example_machineout.png " />
@@ -454,7 +456,7 @@ nodeunit with VIM.
454456That compiler uses __ machineout__ reporter and it is useful to use
455457with [ vim-makegreen] ( https://github.com/reinh/vim-makegreen ) .
456458
457-
459+
458460
459461Contributing
460462------------
0 commit comments