Stabilize playwright tests by making the left panel constant width (#33451)

* Move css injection to panel.ts

- Inject css on event

* Upgrade package

* Fix playwright tests

* Remove RR instead of masking it

* Fix wrong import

* Fix playwright tests

* Fix more playwright tests

* Catch error and add comment
This commit is contained in:
R Midhun Suresh
2026-05-21 09:49:03 +01:00
committed by GitHub
parent f615cf7fab
commit 7ce368537b
21 changed files with 83 additions and 28 deletions
@@ -20,6 +20,7 @@ test.describe("Composer", () => {
botCreateOpts: {
displayName: "Bob",
},
lockLeftPanelWidth: false,
});
test.use({
@@ -185,6 +186,7 @@ test.describe("Composer", () => {
await app.viewRoomByName("Bob");
const composer = page.getByRole("textbox", { name: "Send an unencrypted message…" });
await composer.click();
await composer.pressSequentially("@bob");
// Note that we include the user ID here as the room tile is also an 'option' role
+10 -4
View File
@@ -216,10 +216,16 @@ test.describe("Composer", () => {
await expect(page.locator(".mx_ImageBody")).toBeVisible();
});
test("renders in narrow viewports", { tag: "@screenshot" }, async ({ page, bot, app }) => {
// Shrink the viewport
await page.setViewportSize({ width: 750, height: 1080 });
await expect(page.locator(".mx_MessageComposer_wrapper")).toMatchScreenshot("narrow.png");
test.describe(() => {
test.use({
lockLeftPanelWidth: false,
});
test("renders in narrow viewports", { tag: "@screenshot" }, async ({ page, bot, app }) => {
// Shrink the viewport
await page.setViewportSize({ width: 750, height: 1080 });
await expect(page.locator(".mx_MessageComposer_wrapper")).toMatchScreenshot("narrow.png");
});
});
test.describe("when Control+Enter is required to send", () => {