()
| 83 | } |
| 84 | |
| 85 | export const createAxiosNotFoundErrorObject = () => |
| 86 | new AxiosError( |
| 87 | "Request failed with status code 404", |
| 88 | "ERR_BAD_REQUEST", |
| 89 | undefined, |
| 90 | undefined, |
| 91 | { |
| 92 | status: 404, |
| 93 | statusText: "Not Found", |
| 94 | data: { message: "Settings not found" }, |
| 95 | headers: {}, |
| 96 | // @ts-expect-error - we only need the response object for this test |
| 97 | config: {}, |
| 98 | }, |
| 99 | ); |
| 100 | |
| 101 | export const selectOrganization = async ({ |
| 102 | orgIndex, |
no outgoing calls
no test coverage detected