openpanel/packages/simple-rest/test/jest.setup.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

10 lines
149 B
TypeScript

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