(statusCodeExpected = httpStatus.NO_CONTENT)
| 53 | } |
| 54 | |
| 55 | async signout(statusCodeExpected = httpStatus.NO_CONTENT) { |
| 56 | await this.request |
| 57 | .post('/users/signout') |
| 58 | .expect(statusCodeExpected); |
| 59 | } |
| 60 | |
| 61 | async listUsers(statusCodeExpected = httpStatus.OK) { |
| 62 | const { body } = await this.request |
no outgoing calls
no test coverage detected