Skip to content

Commit a7e31c2

Browse files
author
Bruno Herfst
authored
Update README.md
1 parent 57419e1 commit a7e31c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,29 @@ The `add` function takes three arguments:
3434
Example using multiple files and multiple targets:
3535

3636
// Generates 4 tests
37-
tap-es.add(['test1.jsx','test2.jsx'], [indesign-13,photoshop-18])
37+
tapes.add(['test1.jsx','test2.jsx'], [indesign-13,photoshop-18])
3838

3939
[glob](https://github.com/isaacs/node-glob) patterns are supported:
4040

41-
tap-es.add('test/*.indd.jsx', [indesign-12,indesign-13] )
41+
tapes.add('test/*.indd.jsx', [indesign-12,indesign-13] )
4242

4343

4444
## Report Options
4545

4646
We add the duration of the test to the report:
4747

48-
tap-es.reportDuration(true)
48+
tapes.reportDuration(true)
4949

5050
and/or add the file name of the test with:
5151

52-
tap-es.reportScriptName(true)
52+
tapes.reportScriptName(true)
5353

5454

5555
## Running the tests
5656

5757
After having added the tests, we can use the `run()` command to run the tests and pipe the output to file (Markdown) and console:
5858

59-
tap-es.run( 'result.md' )
59+
tapes.run( 'result.md' )
6060

6161
> The run command resets tap-es
6262

0 commit comments

Comments
 (0)