You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: readme.markdown
+12-12
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ Please note that all modules loaded using the `-r` flag will run *before* any te
86
86
87
87
# things that go well with tape
88
88
89
-
tape maintains a fairly minimal core. Additional features are usually added by using another module alongside tape.
89
+
`tape` maintains a fairly minimal core. Additional features are usually added by using another module alongside `tape`.
90
90
91
91
## pretty reporters
92
92
@@ -122,7 +122,7 @@ of the modules of your choice!
122
122
123
123
## uncaught exceptions
124
124
125
-
By default, uncaught exceptions in your tests will not be intercepted, and will cause tape to crash. If you find this behavior undesirable, use [tape-catch](https://github.com/michaelrhodes/tape-catch) to report any exceptions as TAP errors.
125
+
By default, uncaught exceptions in your tests will not be intercepted, and will cause `tape` to crash. If you find this behavior undesirable, use [`tape-catch`](https://github.com/michaelrhodes/tape-catch) to report any exceptions as TAP errors.
126
126
127
127
## other
128
128
@@ -135,10 +135,10 @@ By default, uncaught exceptions in your tests will not be intercepted, and will
135
135
136
136
# methods
137
137
138
-
The assertion methods in tape are heavily influenced or copied from the methods
138
+
The assertion methods in `tape` are heavily influenced or copied from the methods
139
139
in [node-tap](https://github.com/isaacs/node-tap).
140
140
141
-
```
141
+
```js
142
142
var test =require('tape')
143
143
```
144
144
@@ -163,12 +163,12 @@ Generate a new test that will be skipped over.
163
163
164
164
## test.onFinish(fn)
165
165
166
-
The onFinish hook will get invoked when ALL tape tests have finished
167
-
right before tape is about to print the test summary.
166
+
The onFinish hook will get invoked when ALL `tape` tests have finished
167
+
right before `tape` is about to print the test summary.
168
168
169
169
## test.onFailure(fn)
170
170
171
-
The onFailure hook will get invoked whenever any tape tests has failed.
171
+
The onFailure hook will get invoked whenever any `tape` tests has failed.
172
172
173
173
## t.plan(n)
174
174
@@ -296,8 +296,8 @@ the first tick.
296
296
## test.only([name], [opts], cb)
297
297
298
298
Like `test([name], [opts], cb)` except if you use `.only` this is the only test case
299
-
that will run for the entire process, all other test cases using tape will
300
-
be ignored
299
+
that will run for the entire process, all other test cases using `tape` will
300
+
be ignored.
301
301
302
302
## var stream = test.createStream(opts)
303
303
@@ -326,7 +326,7 @@ like a network connection or a file.
0 commit comments