1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-07 21:23:00 +03:00

Update PollCreateDialog-test to snapshot the html and not react tree (#7712)

This commit is contained in:
Michael Telatynski
2022-02-03 11:54:03 +00:00
committed by GitHub
parent 226ccfc45c
commit 78e78292cb
2 changed files with 4 additions and 2356 deletions

View File

@@ -42,7 +42,7 @@ describe("PollCreateDialog", () => {
const dialog = mount(
<PollCreateDialog room={createRoom()} onFinished={jest.fn()} />,
);
expect(dialog).toMatchSnapshot();
expect(dialog.html()).toMatchSnapshot();
});
it("renders a question and some options", () => {
@@ -61,7 +61,7 @@ describe("PollCreateDialog", () => {
changeValue(dialog, "Option 2", "The question is meaningless");
dialog.find("div.mx_PollCreateDialog_addOption").simulate("click");
changeValue(dialog, "Option 3", "Mu");
expect(dialog).toMatchSnapshot();
expect(dialog.html()).toMatchSnapshot();
});
it("doesn't allow submitting until there are options", () => {