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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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", () => {