From 1cceeaf637457d2980b55e7f33073761c8bdfa2e Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Sun, 26 Feb 2023 03:32:43 +0100 Subject: [PATCH] Update request unit test (#17624) --- api/src/request/index.test.ts | 3 +++ 1 file changed, 3 insertions(+) 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(), },