mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
10 lines
217 B
TypeScript
10 lines
217 B
TypeScript
import nock from "nock";
|
|
|
|
// it's actually sending request to the server and print "mock" to console for you to copy and paste.
|
|
// nock.recorder.rec();
|
|
|
|
afterAll(async () => {
|
|
nock.cleanAll();
|
|
nock.restore();
|
|
});
|