From 0fc22fc6a35ef63bc58107bc789e1e6381dce38f Mon Sep 17 00:00:00 2001 From: Steliyan Dinkov Date: Fri, 14 Feb 2025 18:15:42 +0100 Subject: [PATCH] update imports --- src/modules/data/system/SystemApi.composable.unit.ts | 6 +----- src/store/auth.unit.ts | 1 - 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/modules/data/system/SystemApi.composable.unit.ts b/src/modules/data/system/SystemApi.composable.unit.ts index 0d81c5ea42..6a53585705 100644 --- a/src/modules/data/system/SystemApi.composable.unit.ts +++ b/src/modules/data/system/SystemApi.composable.unit.ts @@ -1,10 +1,6 @@ import { useErrorHandler } from "@/components/error-handling/ErrorHandler.composable"; import * as serverApi from "@/serverApi/v3/api"; -import { - OauthConfigResponse, - PublicSystemResponse, - SystemsApiInterface, -} from "@/serverApi/v3/api"; +import { PublicSystemResponse, SystemsApiInterface } from "@/serverApi/v3/api"; import { mockApiResponse } from "@@/tests/test-utils"; import { useSystemApi } from "@data-system"; import { createMock, DeepMocked } from "@golevelup/ts-jest"; diff --git a/src/store/auth.unit.ts b/src/store/auth.unit.ts index b54f2a4d02..9483af7096 100644 --- a/src/store/auth.unit.ts +++ b/src/store/auth.unit.ts @@ -12,7 +12,6 @@ import { createMock, DeepMocked } from "@golevelup/ts-jest"; import { AxiosError, AxiosInstance } from "axios"; import AuthModule from "./auth"; import EnvConfigModule from "./env-config"; -import { System } from "@data-system"; jest.useFakeTimers();