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 {act, render, screen} from "@testing-library/react";
import LandingPage from "../../pages/LandingPage";
import * as forms from "../../api/forms";
import {MemoryRouter} 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,
submitted_text: null
};
test("renders landing page", async () => {
jest.spyOn(forms, "getForms").mockImplementation(() => Promise.resolve([testingForm]));
act(() => { render(<LandingPage/>, {wrapper: MemoryRouter}); });
const headerBar = await screen.findByText(/Python Discord Forms/);
expect(headerBar).toBeInTheDocument();
});
|