* Checks that the response code is 5xx
()
| 131 | * Checks that the response code is 5xx |
| 132 | */ |
| 133 | seeResponseCodeIsServerError() { |
| 134 | this._checkResponseReady() |
| 135 | assert(this.response.status >= 500 && this.response.status < 600) |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Checks that the response code is 2xx |
no test coverage detected