Skip to content

Instantly share code, notes, and snippets.

@dolcalmi
Forked from christianhaller3000/mock.js
Created April 25, 2023 00:34
Show Gist options
  • Save dolcalmi/c9867763a1171e9c2722f43c8381df74 to your computer and use it in GitHub Desktop.
Save dolcalmi/c9867763a1171e9c2722f43c8381df74 to your computer and use it in GitHub Desktop.
Mock node dns resolver
jest.mock("dns", () => {
return {
promises: {
Resolver: function() {
return {
resolveTxt: () => {
return ["1.1.1.1","2.2.2.2/28"];
}
};
}
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment