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
34
35
36
|
import React from "react";
import { render } from "@testing-library/react";
import LandingPage from "../../pages/LandingPage";
import * as forms from "../../api/forms";
import { BrowserRouter as Router } from "react-router-dom";
import { QuestionType } from "../../api/question";
const testingForm: forms.Form = {
"id": "testing-form",
"name": "Testing Form",
"description": "Meant for testing",
"features": [forms.FormFeatures.Discoverable],
"questions": [
{
"id": "my-question",
"name": "My Question",
"type": QuestionType.ShortText,
"data": {},
required: true
}
],
"webhook": null
};
test("renders landing page", () => {
const setForms = jest.fn(() => [testingForm]);
Object.defineProperty(forms, "getForms", setForms);
const handleForms = jest.spyOn(React, "useState");
handleForms.mockImplementation(() => [[testingForm], setForms]);
const { getByText } = render(<Router><LandingPage /></Router>);
// If we rendered the headerbar we rendered the landing page.
const headerBar = getByText(/Python Discord Forms/);
expect(headerBar).toBeInTheDocument();
});
|