Skip to content

Commit f696271

Browse files
committed
Merge pull request #397 from jamestalmage/document-skipped-assertions
Document skippable assertions.
2 parents f8701d5 + 879e036 commit f696271

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

readme.md

+11
Original file line numberDiff line numberDiff line change
@@ -566,6 +566,17 @@ Assert that `function` doesn't throw an `error` or `promise` resolves.
566566

567567
Assert that `error` is falsy.
568568

569+
## Skipping Assertions
570+
571+
Any assertion can be skipped using the `skip` modifier. Skipped assertions are still counted, so there is no need to change your planned assertion count.
572+
573+
```js
574+
test(t => {
575+
t.plan(2);
576+
t.skip.is(foo(), 5); // no need to change your plan count when skipping.
577+
t.is(1, 1);
578+
});
579+
```
569580

570581
## Enhanced asserts
571582

0 commit comments

Comments
 (0)