(label, fn)
| 129 | // test is a wrapper around "it" that skips the test if a previous one in |
| 130 | // the same context failed already. |
| 131 | test(label, fn) { |
| 132 | it(label, this.wrapFn(fn)); |
| 133 | } |
| 134 | |
| 135 | // afterTest is a wrapper around "after" that skips the after if a previous |
| 136 | // test or afterTest in the same context failed already. |
no test coverage detected