(fn)
| 135 | // afterTest is a wrapper around "after" that skips the after if a previous |
| 136 | // test or afterTest in the same context failed already. |
| 137 | afterTest(fn) { |
| 138 | after(this.wrapFn(fn)); |
| 139 | } |
| 140 | |
| 141 | requestShouldNotError(fn) { |
| 142 | this.test('the request should not error', fn); |