File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,29 +34,29 @@ The `add` function takes three arguments:
34
34
Example using multiple files and multiple targets:
35
35
36
36
// 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])
38
38
39
39
[ glob] ( https://github.com/isaacs/node-glob ) patterns are supported:
40
40
41
- tap-es .add('test/*.indd.jsx', [indesign-12,indesign-13] )
41
+ tapes .add('test/*.indd.jsx', [indesign-12,indesign-13] )
42
42
43
43
44
44
## Report Options
45
45
46
46
We add the duration of the test to the report:
47
47
48
- tap-es .reportDuration(true)
48
+ tapes .reportDuration(true)
49
49
50
50
and/or add the file name of the test with:
51
51
52
- tap-es .reportScriptName(true)
52
+ tapes .reportScriptName(true)
53
53
54
54
55
55
## Running the tests
56
56
57
57
After having added the tests, we can use the ` run() ` command to run the tests and pipe the output to file (Markdown) and console:
58
58
59
- tap-es .run( 'result.md' )
59
+ tapes .run( 'result.md' )
60
60
61
61
> The run command resets tap-es
62
62
You can’t perform that action at this time.
0 commit comments