import MockAdapter from "axios-mock-adapter"; import { getAxiosInstance } from "../../services"; let mock: MockAdapter; // Mock any GET request to /users // arguments for reply are (status, data, headers) export const getMockAdapter = () => { if (!mock) { mock = new MockAdapter(getAxiosInstance({})); } return mock; };