We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcfb87d commit 5adc97dCopy full SHA for 5adc97d
test/unit/common/http.test.ts
@@ -19,7 +19,7 @@ describe("http", () => {
19
const httpError = new HttpError(message, HttpCode.BadRequest)
20
21
expect(httpError.message).toBe(message)
22
- expect(httpError.status).toBe(400)
+ expect(httpError.statusCode).toBe(400)
23
expect(httpError.details).toBeUndefined()
24
})
25
it("should have details if provided", () => {
0 commit comments