openpanel/packages/strapi-v4/test/jest.setup.ts
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

10 lines
145 B
TypeScript

import nock from "nock";
import axios from "axios";
axios.defaults.adapter = "http";
afterAll(() => {
nock.cleanAll();
nock.restore();
});