Skip to content

Commit

Permalink
Fix RTE mentions autocomplete test
Browse files Browse the repository at this point in the history
LeftArrow  -> ArrowLeft
  • Loading branch information
langleyd committed Oct 18, 2024
1 parent 90e8c13 commit a5a4cd7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions playwright/e2e/composer/RTE.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ test.describe("Composer", () => {
},
});

// https://github.com/vector-im/element-web/issues/26037
test.skip("autocomplete behaviour tests", async ({ page, app, bot: bob }) => {
test("autocomplete behaviour tests", async ({ page, app, bot: bob }) => {
// Set up a private room so we have another user to mention
await app.client.createRoom({
is_direct: true,
Expand Down Expand Up @@ -138,10 +137,10 @@ test.describe("Composer", () => {
.pressSequentially(`initial text @${bob.credentials.displayName.slice(0, 1)} abc`);
await expect(page.getByTestId("autocomplete-wrapper")).toBeEmpty();
// Move the cursor left by 4 to put it to: `@B| abc`, check autocomplete displays
await page.getByRole("textbox").press("LeftArrow");
await page.getByRole("textbox").press("LeftArrow");
await page.getByRole("textbox").press("LeftArrow");
await page.getByRole("textbox").press("LeftArrow");
await page.getByRole("textbox").press("ArrowLeft");
await page.getByRole("textbox").press("ArrowLeft");
await page.getByRole("textbox").press("ArrowLeft");
await page.getByRole("textbox").press("ArrowLeft");
await expect(page.getByTestId("autocomplete-wrapper")).not.toBeEmpty();

// Selecting the autocomplete option using Enter inserts it into the composer
Expand Down

0 comments on commit a5a4cd7

Please sign in to comment.