OpenPanel/packages/simple-rest/test/jest.setup.ts
2024-02-05 10:23:04 +01:00

10 lines
149 B
TypeScript

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