Fix broken tests
This commit is contained in:
parent
1ba419fe11
commit
610f9396bb
2 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,7 @@ describe("NotificationPanel", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should render empty state", () => {
|
it("should render empty state", () => {
|
||||||
|
cy.enableLabsFeature("feature_notifications");
|
||||||
cy.viewRoomByName(ROOM_NAME);
|
cy.viewRoomByName(ROOM_NAME);
|
||||||
cy.findByRole("button", { name: "Notifications" }).click();
|
cy.findByRole("button", { name: "Notifications" }).click();
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,7 @@ describe("Room Header", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should render default buttons properly", () => {
|
it("should render default buttons properly", () => {
|
||||||
|
cy.enableLabsFeature("feature_notifications");
|
||||||
cy.createRoom({ name: "Test Room" }).viewRoomByName("Test Room");
|
cy.createRoom({ name: "Test Room" }).viewRoomByName("Test Room");
|
||||||
|
|
||||||
cy.get(".mx_LegacyRoomHeader").within(() => {
|
cy.get(".mx_LegacyRoomHeader").within(() => {
|
||||||
|
@ -79,6 +80,7 @@ describe("Room Header", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should render a very long room name without collapsing the buttons", () => {
|
it("should render a very long room name without collapsing the buttons", () => {
|
||||||
|
cy.enableLabsFeature("feature_notifications");
|
||||||
const LONG_ROOM_NAME =
|
const LONG_ROOM_NAME =
|
||||||
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore " +
|
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore " +
|
||||||
"et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut " +
|
"et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut " +
|
||||||
|
@ -109,6 +111,7 @@ describe("Room Header", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should have buttons highlighted by being clicked", () => {
|
it("should have buttons highlighted by being clicked", () => {
|
||||||
|
cy.enableLabsFeature("feature_notifications");
|
||||||
cy.createRoom({ name: "Test Room" }).viewRoomByName("Test Room");
|
cy.createRoom({ name: "Test Room" }).viewRoomByName("Test Room");
|
||||||
|
|
||||||
cy.get(".mx_LegacyRoomHeader").within(() => {
|
cy.get(".mx_LegacyRoomHeader").within(() => {
|
||||||
|
@ -142,6 +145,7 @@ describe("Room Header", () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
it("should render buttons for room options, beta pill, invite, chat, and room info", () => {
|
it("should render buttons for room options, beta pill, invite, chat, and room info", () => {
|
||||||
|
cy.enableLabsFeature("feature_notifications");
|
||||||
createVideoRoom();
|
createVideoRoom();
|
||||||
|
|
||||||
cy.get(".mx_LegacyRoomHeader").within(() => {
|
cy.get(".mx_LegacyRoomHeader").within(() => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue