blob: 947c075853a4a224fd5a046d40407df1f158a1ac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import React from "react";
import { render } from "@testing-library/react";
import { createMemoryHistory } from "history";
import { Route, BrowserRouter as Router } from "react-router-dom";
import FormPage from "../../pages/FormPage";
import * as forms from "../../api/forms";
test("renders specific form page with loading bar", () => {
const history = createMemoryHistory();
history.push("/form/route");
const { getByText } = render(<Router><Route history={history} ><FormPage /></Route></Router>);
// If we rendered the headerbar we rendered the forms page.
const headerBar = getByText(/Loading.../);
expect(headerBar).toBeInTheDocument();
});
/* TODO: Find why this test spits out promise errors that fail CI */
test.skip("calls api method to load form", () => {
const history = createMemoryHistory();
history.push("/form/ban-appeals");
const oldImpl = forms.getForm;
Object.defineProperty(forms, "getForm", {value: jest.fn(oldImpl)});
render(<Router><Route history={history}><FormPage /></Route></Router>);
expect(forms.getForm).toBeCalled();
});
|