UNPKG

jest-websocket-mock

Version:

Mock websockets and assert complex websocket interactions with Jest

11 lines (8 loc) 208 B
import ReactDOM from "react-dom"; import ".."; jest.mock("react-dom"); describe("The index", () => { it("can be imported without errors", () => { expect(ReactDOM.render).toHaveBeenCalled(); }); });