Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ jobs:
ep_align
ep_author_hover
ep_cursortrace
ep_font_color
ep_font_size
ep_hash_auth
ep_headings2
ep_markdown
ep_readonly_guest
Expand Down Expand Up @@ -238,7 +240,9 @@ jobs:
ep_align
ep_author_hover
ep_cursortrace
ep_font_color
ep_font_size
ep_hash_auth
ep_headings2
ep_markdown
ep_readonly_guest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/frontend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ jobs:
pnpm add -w
ep_align
ep_author_hover
ep_font_color
ep_font_size
ep_hash_auth
ep_headings2
ep_markdown
ep_readonly_guest
Expand Down Expand Up @@ -305,7 +307,9 @@ jobs:
pnpm add -w
ep_align
ep_author_hover
ep_font_color
ep_font_size
ep_hash_auth
ep_headings2
ep_markdown
ep_readonly_guest
Expand Down
5 changes: 5 additions & 0 deletions src/tests/frontend-new/specs/change_user_color.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ test.describe('change user color', function () {


await $colorPickerSave.click();
// Close the users popup so it stops intercepting pointer events on #chaticon.
// Without this, in the with-plugins matrix the popup overlaps the chat icon
// and showChat() retries clicks until it times out.
await $userButton.click();
await expect(page.locator('#users')).not.toHaveClass(/popup-show/);
// click on the chat button to make chat visible
await showChat(page)
await sendChatMessage(page, 'O hi');
Expand Down
Loading