Skip to content

Commit 25b4a24

Browse files
committed
Minor punctuation/highlighting improvement
1 parent c481dae commit 25b4a24

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

readme.markdown

+12-12
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Please note that all modules loaded using the `-r` flag will run *before* any te
8686

8787
# things that go well with tape
8888

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`.
9090

9191
## pretty reporters
9292

@@ -122,7 +122,7 @@ of the modules of your choice!
122122

123123
## uncaught exceptions
124124

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.
126126

127127
## other
128128

@@ -135,10 +135,10 @@ By default, uncaught exceptions in your tests will not be intercepted, and will
135135

136136
# methods
137137

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
139139
in [node-tap](https://github.com/isaacs/node-tap).
140140

141-
```
141+
```js
142142
var test = require('tape')
143143
```
144144

@@ -163,12 +163,12 @@ Generate a new test that will be skipped over.
163163

164164
## test.onFinish(fn)
165165

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.
168168

169169
## test.onFailure(fn)
170170

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.
172172

173173
## t.plan(n)
174174

@@ -296,8 +296,8 @@ the first tick.
296296
## test.only([name], [opts], cb)
297297

298298
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.
301301

302302
## var stream = test.createStream(opts)
303303

@@ -326,7 +326,7 @@ like a network connection or a file.
326326

327327
Pass in test files to run as arguments:
328328

329-
```
329+
```sh
330330
$ node tap.js test/x.js test/y.js
331331
TAP version 13
332332
# (anonymous)
@@ -367,7 +367,7 @@ process.argv.slice(2).forEach(function (file) {
367367

368368
The output for this runner is:
369369

370-
```
370+
```sh
371371
$ node object.js test/x.js test/y.js
372372
{"type":"test","name":"(anonymous)","id":0}
373373
{"id":0,"ok":false,"name":"should be equal","operator":"equal","actual":"beep","expected":"boop","error":{},"test":0,"type":"assert"}
@@ -385,7 +385,7 @@ $ node object.js test/x.js test/y.js
385385

386386
With [npm](https://npmjs.org) do:
387387

388-
```
388+
```sh
389389
npm install tape --save-dev
390390
```
391391

0 commit comments

Comments
 (0)