* Checks that the response code is 4xx
()
| 115 | * Checks that the response code is 4xx |
| 116 | */ |
| 117 | seeResponseCodeIsClientError() { |
| 118 | this._checkResponseReady() |
| 119 | assert(this.response.status >= 400 && this.response.status < 500) |
| 120 | } |
| 121 | |
| 122 | /** |
| 123 | * Checks that the response code is 3xx |
no test coverage detected