Farmbot-Web-App/src/__tests__/test_history.ts

13 lines
333 B
TypeScript

import { history, push } from "../history";
describe("push()", () => {
it("calls history with a URL", () => {
const URL = "/wow.html";
let oldFn = history.push;
history.push = jest.fn();
push(URL);
expect(history.push).toHaveBeenCalledWith(URL);
history.push = oldFn;
});
});