n8n-nodes-awx
Version:
n8n node to interact with Ansible AWX/Tower with improved type safety
15 lines • 498 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.resetAllMocks = resetAllMocks;
const nock_1 = __importDefault(require("nock"));
function resetAllMocks() {
jest.resetAllMocks();
jest.clearAllMocks();
if (nock_1.default.isDone()) {
nock_1.default.cleanAll();
}
}
//# sourceMappingURL=testUtils.js.map