Merged in chore/add-error-details-for-sentry (pull request #3378)
Include more details when throwing errors for debugging in Sentry * WIP throw errors with more details for debugging in Sentry * Fix throwing response-data * Clearer message when a response fails * Add message to errors * better typings * . * Try to send profileID and membershipNumber to Sentry when we fail to parse the apiResponse * rename notFound -> notFoundError * Merge branch 'master' of bitbucket.org:scandic-swap/web into chore/add-error-details-for-sentry Approved-by: Linus Flood
This commit is contained in:
@@ -77,11 +77,13 @@ describe("getLocationsByCountries", () => {
|
||||
it("throws unauthorized on 401 response", async () => {
|
||||
mockedGetCacheClient.mockResolvedValueOnce(mockedCacheClient)
|
||||
|
||||
mockedApiGet.mockResolvedValueOnce({
|
||||
ok: false,
|
||||
status: 401,
|
||||
json: async () => ({}),
|
||||
})
|
||||
mockedApiGet.mockResolvedValueOnce(
|
||||
new Response(JSON.stringify({ data: "Unauthorized" }), {
|
||||
status: 401,
|
||||
statusText: "Unauthorized",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
})
|
||||
)
|
||||
|
||||
await expect(
|
||||
getLocationsByCountries({
|
||||
@@ -89,7 +91,9 @@ describe("getLocationsByCountries", () => {
|
||||
citiesByCountry: null,
|
||||
serviceToken: "token",
|
||||
})
|
||||
).rejects.toThrow("Unauthorized")
|
||||
).rejects.toMatchObject({
|
||||
code: "UNAUTHORIZED",
|
||||
})
|
||||
|
||||
expect(mockedApiGet).toHaveBeenCalled()
|
||||
})
|
||||
@@ -97,11 +101,13 @@ describe("getLocationsByCountries", () => {
|
||||
it("throws forbidden on 403 response", async () => {
|
||||
mockedGetCacheClient.mockResolvedValueOnce(mockedCacheClient)
|
||||
|
||||
mockedApiGet.mockResolvedValueOnce({
|
||||
ok: false,
|
||||
status: 403,
|
||||
json: async () => ({}),
|
||||
})
|
||||
mockedApiGet.mockResolvedValueOnce(
|
||||
new Response(JSON.stringify({ data: "Forbidden" }), {
|
||||
status: 403,
|
||||
statusText: "Forbidden",
|
||||
headers: { "Content-Type": "application/json" },
|
||||
})
|
||||
)
|
||||
|
||||
await expect(
|
||||
getLocationsByCountries({
|
||||
@@ -109,7 +115,9 @@ describe("getLocationsByCountries", () => {
|
||||
citiesByCountry: null,
|
||||
serviceToken: "token",
|
||||
})
|
||||
).rejects.toThrow("Forbidden")
|
||||
).rejects.toMatchObject({
|
||||
code: "FORBIDDEN",
|
||||
})
|
||||
})
|
||||
|
||||
it("parses locations and enriches city country and hotel city via getCity", async () => {
|
||||
|
||||
Reference in New Issue
Block a user