X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/34ed87de05ae7c6d99aefe21e83af382e371cc53..2a7fd99c212c33a1ec9911f8529fa5afc59a7bb2:/src/services/common-service/common-resource-service.test.ts diff --git a/src/services/common-service/common-resource-service.test.ts b/src/services/common-service/common-resource-service.test.ts index a7fdac621f..7f47f20ef7 100644 --- a/src/services/common-service/common-resource-service.test.ts +++ b/src/services/common-service/common-resource-service.test.ts @@ -5,8 +5,8 @@ import { CommonResourceService } from "./common-resource-service"; import axios, { AxiosInstance } from "axios"; import MockAdapter from "axios-mock-adapter"; -import { Resource } from "src/models/resource"; -import { ApiActions } from "~/services/api/api-actions"; +import { Resource } from "models/resource"; +import { ApiActions } from "services/api/api-actions"; const actions: ApiActions = { progressFn: (id: string, working: boolean) => {}, @@ -136,8 +136,9 @@ describe("CommonResourceService", () => { await commonResourceService.list({ filters: tooBig }); expect(axiosMock.history.get.length).toBe(0); expect(axiosMock.history.post.length).toBe(1); - expect(axiosMock.history.post[0].data.get('filters')).toBe(`[${tooBig}]`); - expect(axiosMock.history.post[0].params._method).toBe('GET'); + const postParams = new URLSearchParams(axiosMock.history.post[0].data); + expect(postParams.get('filters')).toBe(`[${tooBig}]`); + expect(postParams.get('_method')).toBe('GET'); }); it("#list using GET when query string is not too big", async () => {