diff --git a/api/src/request/index.test.ts b/api/src/request/index.test.ts index 8db72c0fe6..540f2ae95f 100644 --- a/api/src/request/index.test.ts +++ b/api/src/request/index.test.ts @@ -10,6 +10,9 @@ let mockAxiosInstance: AxiosInstance; beforeEach(() => { mockAxiosInstance = { interceptors: { + request: { + use: vi.fn(), + }, response: { use: vi.fn(), },