mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-06 04:21:55 +00:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
jest.mock("disqus-react", () => {
|
|
const React = require("react");
|
|
return {
|
|
DiscussionEmbed: () => <></>
|
|
};
|
|
});
|
|
|
|
export default {};
|