* Checks that the response code is 3xx
()
| 123 | * Checks that the response code is 3xx |
| 124 | */ |
| 125 | seeResponseCodeIsRedirection() { |
| 126 | this._checkResponseReady() |
| 127 | assert(this.response.status >= 300 && this.response.status < 400) |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Checks that the response code is 5xx |
no test coverage detected