17319: Unit test code cleanup.
authorLucas Di Pentima <lucas@di-pentima.com.ar>
Mon, 22 Feb 2021 20:17:42 +0000 (17:17 -0300)
committerLucas Di Pentima <lucas@di-pentima.com.ar>
Mon, 22 Feb 2021 20:17:42 +0000 (17:17 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas@di-pentima.com.ar>

src/services/common-service/common-service.test.ts

index 6754710534ca247a7048b914d8e717671e8b1c12..14a154767fbc2b93f08cfdb3778e360efeea4093 100644 (file)
@@ -2,7 +2,7 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import axios, { AxiosInstance } from "axios";
+import axios from "axios";
 import { ApiActions } from "~/services/api/api-actions";
 import { CommonService } from "./common-service";
 
@@ -12,12 +12,10 @@ const actions: ApiActions = {
 };
 
 describe("CommonService", () => {
-    let axiosInstance: AxiosInstance;
     let commonService: CommonService<any>;
 
     beforeEach(() => {
-        commonService = new CommonService<any>(axiosInstance, "resource", actions);
-        axiosInstance = axios.create();
+        commonService = new CommonService<any>(axios.create(), "resource", actions);
     });
 
     it("throws an exception when passing uuid as empty string to get()", () => {