End to End Tests #3837
end-to-end-tests.yaml
on: schedule
Build Element-Web
1m 55s
Matrix: playwright
end-to-end-tests
1m 18s
Annotations
40 errors, 60 warnings, and 12 notices
[Chrome] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread:
playwright/e2e/room_options/marked_unread.spec.ts#L51
1) [Chrome] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread
Error: expect(locator).toBeVisible()
Locator: getByLabel('The mark unread test room Unread messages.')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByLabel('The mark unread test room Unread messages.')
49 | await page.getByRole("menuitem", { name: "Mark as unread" }).click();
50 |
> 51 | expect(page.getByLabel(TEST_ROOM_NAME + " Unread messages.")).toBeVisible();
| ^
52 | });
53 | });
54 |
at /home/runner/work/element-web/element-web/playwright/e2e/room_options/marked_unread.spec.ts:51:71
|
[Chrome] › room-directory/room-directory.spec.ts:18:9 › Room Directory › should allow admin to add alias & publish room to directory @no-webkit:
playwright/e2e/room-directory/room-directory.spec.ts#L34
2) [Chrome] › room-directory/room-directory.spec.ts:18:9 › Room Directory › should allow admin to add alias & publish room to directory @no-webkit
Error: Timed out 5000ms waiting for expect(locator).toHaveClass(expected)
Locator: locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#gaming:localhost')
Expected string: "mx_EditableItem_item"
Received: <element(s) not found>
Call log:
- expect.toHaveClass with timeout 5000ms
- waiting for locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#gaming:localhost')
32 | await localAddresses.getByRole("textbox").fill("gaming");
33 | await localAddresses.getByRole("button", { name: "Add" }).click();
> 34 | await expect(localAddresses.getByText("#gaming:localhost")).toHaveClass("mx_EditableItem_item");
| ^
35 |
36 | // Publish into the public rooms directory
37 | const publishedAddresses = page.locator(".mx_SettingsFieldset", { hasText: "Published Addresses" });
at /home/runner/work/element-web/element-web/playwright/e2e/room-directory/room-directory.spec.ts:34:73
|
[Chrome] › app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload:
playwright/e2e/app-loading/stored-credentials.spec.ts#L1
1) [Chrome] › app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ──
Test timeout of 30000ms exceeded.
|
[Chrome] › app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload:
playwright/pages/ElementAppPage.ts#L96
1) [Chrome] › app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ──
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByRole('tree', { name: 'Rooms' }).locator('[title="Test Room"],[aria-label="Test Room"]').first()
at ../pages/ElementAppPage.ts:96
94 | .locator(`[title="${name}"],[aria-label="${name}"]`)
95 | .first()
> 96 | .click();
| ^
97 | }
98 |
99 | public async viewRoomById(roomId: string): Promise<void> {
at ElementAppPage.viewRoomByName (/home/runner/work/element-web/element-web/playwright/pages/ElementAppPage.ts:96:14)
at /home/runner/work/element-web/element-web/playwright/e2e/app-loading/stored-credentials.spec.ts:32:15
|
[Firefox] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot:
playwright/element-web-test.ts#L315
1) [Firefox] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
Error: expect.toMatchScreenshot: Test ended.
at ../element-web-test.ts:315
313 | await baseExpect(receiver).toHaveScreenshot(screenshotName, options);
314 |
> 315 | await style.evaluate((tag) => tag.remove());
| ^
316 |
317 | testInfo.annotations.push({
318 | // `_` prefix hides it from the HTML reporter
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:315:21)
|
[Firefox] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot:
playwright/element-web-test.ts#L315
2) [Firefox] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
Error: expect.toMatchScreenshot: Target page, context or browser has been closed
at ../element-web-test.ts:315
313 | await baseExpect(receiver).toHaveScreenshot(screenshotName, options);
314 |
> 315 | await style.evaluate((tag) => tag.remove());
| ^
316 |
317 | testInfo.annotations.push({
318 | // `_` prefix hides it from the HTML reporter
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:315:21)
|
[Firefox] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch:
playwright/e2e/sliding-sync/sliding-sync.spec.ts#L382
3) [Firefox] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch
Error: expect(received).toEqual(expected) // deep equality
Expected: ["!YRFAtmWQvgDsUSdWEW:localhost"]
Received: undefined
380 | return;
381 | }
> 382 | expect(body.unsubscribe_rooms).toEqual([unsubRoomId]);
| ^
383 | expect(body.room_subscriptions).not.toHaveProperty(unsubRoomId);
384 | expect(body.room_subscriptions).toHaveProperty(subRoomId);
385 | };
at assertUnsubExists (/home/runner/work/element-web/element-web/playwright/e2e/sliding-sync/sliding-sync.spec.ts:382:44)
at /home/runner/work/element-web/element-web/playwright/e2e/sliding-sync/sliding-sync.spec.ts:404:9
|
[Chrome] › settings/appearance-user-settings-tab/message-layout-panel.spec.ts:42:13 › Appearance user settings tab › Message Layout Panel › should enable compact layout when the modern layout is selected:
playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts#L17
1) [Chrome] › settings/appearance-user-settings-tab/message-layout-panel.spec.ts:42:13 › Appearance user settings tab › Message Layout Panel › should enable compact layout when the modern layout is selected
Test timeout of 30000ms exceeded while running "beforeEach" hook.
15 |
16 | test.describe("Message Layout Panel", () => {
> 17 | test.beforeEach(async ({ app, user, util }) => {
| ^
18 | await util.createAndDisplayRoom();
19 | await util.assertModernLayout();
20 | await util.openAppearanceTab();
at /home/runner/work/element-web/element-web/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts:17:14
|
[Chrome] › settings/appearance-user-settings-tab/message-layout-panel.spec.ts:42:13 › Appearance user settings tab › Message Layout Panel › should enable compact layout when the modern layout is selected:
playwright/pages/ElementAppPage.ts#L96
1) [Chrome] › settings/appearance-user-settings-tab/message-layout-panel.spec.ts:42:13 › Appearance user settings tab › Message Layout Panel › should enable compact layout when the modern layout is selected
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByRole('tree', { name: 'Rooms' }).locator('[title="Test Room"],[aria-label="Test Room"]').first()
at ../pages/ElementAppPage.ts:96
94 | .locator(`[title="${name}"],[aria-label="${name}"]`)
95 | .first()
> 96 | .click();
| ^
97 | }
98 |
99 | public async viewRoomById(roomId: string): Promise<void> {
at ElementAppPage.viewRoomByName (/home/runner/work/element-web/element-web/playwright/pages/ElementAppPage.ts:96:14)
at Helpers.createAndDisplayRoom (/home/runner/work/element-web/element-web/playwright/e2e/settings/appearance-user-settings-tab/index.ts:155:24)
at /home/runner/work/element-web/element-web/playwright/e2e/settings/appearance-user-settings-tab/message-layout-panel.spec.ts:18:13
|
[Chrome] › settings/general-room-settings-tab.spec.ts:39:9 › General room settings tab › long address should not cause dialog to overflow @no-webkit:
playwright/e2e/settings/general-room-settings-tab.spec.ts#L47
2) [Chrome] › settings/general-room-settings-tab.spec.ts:39:9 › General room settings tab › long address should not cause dialog to overflow @no-webkit
Error: Timed out 5000ms waiting for expect(locator).toHaveValue(expected)
Locator: locator('.mx_Dialog').filter({ has: locator('.mx_RoomSettingsDialog') }).locator('#canonicalAlias')
Expected string: "#abcasdhjasjhdaj1jh1asdhasjdhajsdhjavhjksdabcasdhjasjhdaj1jh1asdhasjdhajsdhjavhjksdabcasdhjasjhdaj1jh1asdhasjdhajsdhjavhjksdabcasdhjasjhdaj1jh1asdhasjdhajsdhjavhjksd:localhost"
Received string: ""
Call log:
- expect.toHaveValue with timeout 5000ms
- waiting for locator('.mx_Dialog').filter({ has: locator('.mx_RoomSettingsDialog') }).locator('#canonicalAlias')
9 × locator resolved to <select type="text" id="canonicalAlias" label="Main address" placeholder="Main address">…</select>
- unexpected value ""
45 |
46 | // 2. wait for the new setting to apply ...
> 47 | await expect(settings.locator("#canonicalAlias")).toHaveValue(`#${longString}:localhost`);
| ^
48 |
49 | // 3. Check if the dialog overflows
50 | const dialogBoundingBox = await page.locator(".mx_Dialog").boundingBox();
at /home/runner/work/element-web/element-web/playwright/e2e/settings/general-room-settings-tab.spec.ts:47:59
|
[Chrome] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot:
playwright/element-web-test.ts#L313
3) [Chrome] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
Error: expect.toHaveScreenshot(share-dialog-room.png): Test ended.
Call log:
- expect.toHaveScreenshot(share-dialog-room.png) with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('dialog', { name: 'Share room' })
at ../element-web-test.ts:313
311 |
312 | const screenshotName = sanitizeFilePathBeforeExtension(name);
> 313 | await baseExpect(receiver).toHaveScreenshot(screenshotName, options);
| ^
314 |
315 | await style.evaluate((tag) => tag.remove());
316 |
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:313:9)
|
[Chrome] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot:
playwright/element-web-test.ts#L313
4) [Chrome] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
Error: expect.toHaveScreenshot(share-dialog-user.png): Target page, context or browser has been closed
at ../element-web-test.ts:313
311 |
312 | const screenshotName = sanitizeFilePathBeforeExtension(name);
> 313 | await baseExpect(receiver).toHaveScreenshot(screenshotName, options);
| ^
314 |
315 | await style.evaluate((tag) => tag.remove());
316 |
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:313:9)
|
[Chrome] › share-dialog/share-dialog.spec.ts:49:9 › Share dialog › should share an event @screenshot:
playwright/element-web-test.ts#L313
5) [Chrome] › share-dialog/share-dialog.spec.ts:49:9 › Share dialog › should share an event @screenshot
Error: expect.toHaveScreenshot(share-dialog-event.png): Test ended.
Call log:
- expect.toHaveScreenshot(share-dialog-event.png) with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('dialog', { name: 'Share Room Message' })
- locator resolved to <div role="dialog" class="mx_ShareDialog" data-focus-lock-disabled="false" aria-describedby="mx_Dialog_content" aria-labelledby="mx_BaseDialog_title">…</div>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
at ../element-web-test.ts:313
311 |
312 | const screenshotName = sanitizeFilePathBeforeExtension(name);
> 313 | await baseExpect(receiver).toHaveScreenshot(screenshotName, options);
| ^
314 |
315 | await style.evaluate((tag) => tag.remove());
316 |
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:313:9)
|
[Chrome] › sliding-sync/sliding-sync.spec.ts:225:5 › Sliding Sync › should show and be able to accept/reject/rescind invites:
playwright/e2e/sliding-sync/sliding-sync.spec.ts#L86
6) [Chrome] › sliding-sync/sliding-sync.spec.ts:225:5 › Sliding Sync › should show and be able to accept/reject/rescind invites
Test timeout of 30000ms exceeded while running "beforeEach" hook.
84 |
85 | // Load the user fixture for all tests
> 86 | test.beforeEach(({ user }) => {});
| ^
87 |
88 | test("should render the Rooms list in reverse chronological order by default and allowing sorting A-Z", async ({
89 | page,
at /home/runner/work/element-web/element-web/playwright/e2e/sliding-sync/sliding-sync.spec.ts:86:10
|
[Chrome] › sliding-sync/sliding-sync.spec.ts:225:5 › Sliding Sync › should show and be able to accept/reject/rescind invites:
playwright/element-web-test.ts#L183
6) [Chrome] › sliding-sync/sliding-sync.spec.ts:225:5 › Sliding Sync › should show and be able to accept/reject/rescind invites
Error: page.waitForSelector: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('.mx_MatrixChat') to be visible
at ../element-web-test.ts:183
181 | user: async ({ pageWithCredentials: page, credentials }, use) => {
182 | await page.goto("/");
> 183 | await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
| ^
184 | await use(credentials);
185 | },
186 |
at Object.user (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:183:20)
|
[Chrome] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch:
playwright/e2e/sliding-sync/sliding-sync.spec.ts#L383
7) [Chrome] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch
Error: expect(received).not.toHaveProperty(path)
Matcher error: received value must not be null nor undefined
Received has value: undefined
381 | }
382 | expect(body.unsubscribe_rooms).toEqual([unsubRoomId]);
> 383 | expect(body.room_subscriptions).not.toHaveProperty(unsubRoomId);
| ^
384 | expect(body.room_subscriptions).toHaveProperty(subRoomId);
385 | };
386 |
at assertUnsubExists (/home/runner/work/element-web/element-web/playwright/e2e/sliding-sync/sliding-sync.spec.ts:383:49)
at /home/runner/work/element-web/element-web/playwright/e2e/sliding-sync/sliding-sync.spec.ts:404:9
|
[WebKit] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot:
playwright/element-web-test.ts#L308
1) [WebKit] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
Error: expect.toMatchScreenshot: Test ended.
at ../element-web-test.ts:308
306 |
307 | // We add a custom style tag before taking screenshots
> 308 | const style = (await page.addStyleTag({
| ^
309 | content: css,
310 | })) as ElementHandle<Element>;
311 |
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:308:35)
at /home/runner/work/element-web/element-web/playwright/e2e/share-dialog/share-dialog.spec.ts:26:24
|
[WebKit] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot:
playwright/element-web-test.ts#L308
2) [WebKit] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
Error: expect.toMatchScreenshot: Test ended.
at ../element-web-test.ts:308
306 |
307 | // We add a custom style tag before taking screenshots
> 308 | const style = (await page.addStyleTag({
| ^
309 | content: css,
310 | })) as ElementHandle<Element>;
311 |
at Object.toMatchScreenshot (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:308:35)
at /home/runner/work/element-web/element-web/playwright/e2e/share-dialog/share-dialog.spec.ts:43:24
|
[WebKit] › read-receipts/new-messages-main-timeline.spec.ts:32:17 › Read receipts › new messages › in the main timeline › Reading latest message makes the room read @mergequeue:
playwright/e2e/read-receipts/new-messages-main-timeline.spec.ts#L1
1) [WebKit] › read-receipts/new-messages-main-timeline.spec.ts:32:17 › Read receipts › new messages › in the main timeline › Reading latest message makes the room read @mergequeue
Test timeout of 30000ms exceeded while setting up "user".
|
[WebKit] › read-receipts/new-messages-main-timeline.spec.ts:32:17 › Read receipts › new messages › in the main timeline › Reading latest message makes the room read @mergequeue:
playwright/element-web-test.ts#L183
1) [WebKit] › read-receipts/new-messages-main-timeline.spec.ts:32:17 › Read receipts › new messages › in the main timeline › Reading latest message makes the room read @mergequeue
Error: page.waitForSelector: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('.mx_MatrixChat') to be visible
at ../element-web-test.ts:183
181 | user: async ({ pageWithCredentials: page, credentials }, use) => {
182 | await page.goto("/");
> 183 | await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
| ^
184 | await use(credentials);
185 | },
186 |
at Object.user (/home/runner/work/element-web/element-web/playwright/element-web-test.ts:183:20)
|
[WebKit] › lazy-loading/lazy-loading.spec.ts:110:9 › Lazy Loading › should handle lazy loading properly even when offline:
playwright/e2e/lazy-loading/lazy-loading.spec.ts#L69
1) [WebKit] › lazy-loading/lazy-loading.spec.ts:110:9 › Lazy Loading › should handle lazy loading properly even when offline
Error: toBeAttached can be only used with Locator object
67 | await app.timeline.scrollToTop();
68 | for (const charly of charlies) {
> 69 | await expect(await app.timeline.findEventTile(charly.credentials.displayName, charlyMsg1)).toBeAttached();
| ^
70 | await expect(await app.timeline.findEventTile(charly.credentials.displayName, charlyMsg2)).toBeAttached();
71 | }
72 | }
at checkPaginatedDisplayNames (/home/runner/work/element-web/element-web/playwright/e2e/lazy-loading/lazy-loading.spec.ts:69:104)
at /home/runner/work/element-web/element-web/playwright/e2e/lazy-loading/lazy-loading.spec.ts:118:9
|
[Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js#L31643
1) [Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Error: jsHandle.evaluate: MatrixError: [400] Can't send same reaction twice (http://localhost:37907/_matrix/client/v3/rooms/!iitPSgdnWFcDBwCQBt%3Alocalhost/send/m.reaction/m1736316379501.3)
HTTPError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
MatrixError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
parseErrorResponse@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
requestOtherUrl@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
async*request@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
authedRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
sendEventHttpRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
./matrix-js-sdk/src/client.ts/MatrixClient/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
./matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
startProcessingQueues@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
queueEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
encryptAndSendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7119:34
async*sendCompleteEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7073:19
sendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:6964:17
@debugger eval code line 234 > eval:7:21
evaluate@debugger eval code:236:17
@debugger eval code:1:44
at /home/runner/work/element-web/element-web/HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
at /home/runner/work/element-web/element-web/MatrixError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
at /home/runner/work/element-web/element-web/parseErrorResponse@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
at /home/runner/work/element-web/element-web/requestOtherUrl@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
at /home/runner/work/element-web/element-web/async*request@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
at /home/runner/work/element-web/element-web/authedRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
at /home/runner/work/element-web/element-web/sendEventHttpRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/client.ts/MatrixClient/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
at /home/runner/work/element-web/element-web/promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
at /home/runner/work/element-web/element-web/startProcessingQueues@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
at /home/runner/work/element-web/element-web/queueEvent@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
at /home/runner/work/element-web/element-web/encryptAndSendEvent@http:/localhost:8080/bundles/15b23ec6b884
|
[Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js#L31643
1) [Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: jsHandle.evaluate: MatrixError: [400] Can't send same reaction twice (http://localhost:33235/_matrix/client/v3/rooms/!yNtwoSliVcUMYfwUbI%3Alocalhost/send/m.reaction/m1736316395789.3)
HTTPError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
MatrixError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
parseErrorResponse@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
requestOtherUrl@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
async*request@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
authedRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
sendEventHttpRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
./matrix-js-sdk/src/client.ts/MatrixClient/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
./matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
startProcessingQueues@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
queueEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
encryptAndSendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7119:34
async*sendCompleteEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7073:19
sendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:6964:17
@debugger eval code line 234 > eval:7:21
evaluate@debugger eval code:236:17
@debugger eval code:1:44
at /home/runner/work/element-web/element-web/HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
at /home/runner/work/element-web/element-web/MatrixError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
at /home/runner/work/element-web/element-web/parseErrorResponse@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
at /home/runner/work/element-web/element-web/requestOtherUrl@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
at /home/runner/work/element-web/element-web/async*request@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
at /home/runner/work/element-web/element-web/authedRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
at /home/runner/work/element-web/element-web/sendEventHttpRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/client.ts/MatrixClient/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
at /home/runner/work/element-web/element-web/promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
at /home/runner/work/element-web/element-web/startProcessingQueues@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
at /home/runner/work/element-web/element-web/queueEvent@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
at /
|
[Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js#L31643
1) [Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: jsHandle.evaluate: MatrixError: [400] Can't send same reaction twice (http://localhost:37751/_matrix/client/v3/rooms/!VHElbyeykhelCKFBEW%3Alocalhost/send/m.reaction/m1736316410772.3)
HTTPError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
MatrixError@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
parseErrorResponse@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
requestOtherUrl@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
async*request@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
authedRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
sendEventHttpRequest@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
./matrix-js-sdk/src/client.ts/MatrixClient/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
./matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
startProcessingQueues@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
queueEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
encryptAndSendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7119:34
async*sendCompleteEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7073:19
sendEvent@http://localhost:8080/bundles/15b23ec6b884a544cb79/init.js:6964:17
@debugger eval code line 234 > eval:7:21
evaluate@debugger eval code:236:17
@debugger eval code:1:44
at /home/runner/work/element-web/element-web/HTTPError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31643:5
at /home/runner/work/element-web/element-web/MatrixError@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31702:5
at /home/runner/work/element-web/element-web/parseErrorResponse@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:31970:12
at /home/runner/work/element-web/element-web/requestOtherUrl@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32350:13
at /home/runner/work/element-web/element-web/async*request@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32267:17
at /home/runner/work/element-web/element-web/authedRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:32191:35
at /home/runner/work/element-web/element-web/sendEventHttpRequest@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:7260:24
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/client.ts/MatrixClient/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:4056:32
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/MatrixScheduler/</<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50302:21
at /home/runner/work/element-web/element-web/promise callback*./matrix-js-sdk/src/scheduler.ts/MatrixScheduler/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50301:25
at /home/runner/work/element-web/element-web/matrix-js-sdk/src/scheduler.ts/startProcessingQueues/<@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50419:12
at /home/runner/work/element-web/element-web/startProcessingQueues@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50414:8
at /home/runner/work/element-web/element-web/queueEvent@http:/localhost:8080/bundles/15b23ec6b884a544cb79/init.js:50406:10
at /
|
[Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot:
playwright/e2e/right-panel/right-panel.spec.ts#L51
2) [Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot
Error: Timed out 5000ms waiting for expect(locator).toHaveClass(expected)
Locator: locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
Expected string: "mx_EditableItem_item"
Received: <element(s) not found>
Call log:
- expect.toHaveClass with timeout 5000ms
- waiting for locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
49 | await localAddresses.getByRole("textbox").fill(ROOM_ADDRESS_LONG);
50 | await localAddresses.getByRole("button", { name: "Add" }).click();
> 51 | await expect(localAddresses.getByText(`#${ROOM_ADDRESS_LONG}:localhost`)).toHaveClass(
| ^
52 | "mx_EditableItem_item",
53 | );
54 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/right-panel.spec.ts:51:87
|
[Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot:
playwright/e2e/right-panel/right-panel.spec.ts#L51
2) [Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveClass(expected)
Locator: locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
Expected string: "mx_EditableItem_item"
Received: <element(s) not found>
Call log:
- expect.toHaveClass with timeout 5000ms
- waiting for locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
49 | await localAddresses.getByRole("textbox").fill(ROOM_ADDRESS_LONG);
50 | await localAddresses.getByRole("button", { name: "Add" }).click();
> 51 | await expect(localAddresses.getByText(`#${ROOM_ADDRESS_LONG}:localhost`)).toHaveClass(
| ^
52 | "mx_EditableItem_item",
53 | );
54 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/right-panel.spec.ts:51:87
|
[Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot:
playwright/e2e/right-panel/right-panel.spec.ts#L51
2) [Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveClass(expected)
Locator: locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
Expected string: "mx_EditableItem_item"
Received: <element(s) not found>
Call log:
- expect.toHaveClass with timeout 5000ms
- waiting for locator('.mx_SettingsFieldset').filter({ hasText: 'Local Addresses' }).getByText('#loremIpsumDolorSitAmetConsecteturAdipisicingElitSedDoEiusmodTemporIncididuntUtLaboreEtDoloreMagnaAliqua:localhost')
49 | await localAddresses.getByRole("textbox").fill(ROOM_ADDRESS_LONG);
50 | await localAddresses.getByRole("button", { name: "Add" }).click();
> 51 | await expect(localAddresses.getByText(`#${ROOM_ADDRESS_LONG}:localhost`)).toHaveClass(
| ^
52 | "mx_EditableItem_item",
53 | );
54 |
at /home/runner/work/element-web/element-web/playwright/e2e/right-panel/right-panel.spec.ts:51:87
|
[Firefox] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread:
playwright/e2e/room_options/marked_unread.spec.ts#L51
3) [Firefox] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread
Error: expect(locator).toBeVisible()
Locator: getByLabel('The mark unread test room Unread messages.')
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByLabel('The mark unread test room Unread messages.')
49 | await page.getByRole("menuitem", { name: "Mark as unread" }).click();
50 |
> 51 | expect(page.getByLabel(TEST_ROOM_NAME + " Unread messages.")).toBeVisible();
| ^
52 | });
53 | });
54 |
at /home/runner/work/element-web/element-web/playwright/e2e/room_options/marked_unread.spec.ts:51:71
|
Run Tests [Firefox] 3/4
Process completed with exit code 1.
|
[WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
playwright/pages/client.ts#L98
1) [WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Error: jsHandle.evaluate: M_DUPLICATE_ANNOTATION: MatrixError: [400] Can't send same reaction twice (http://localhost:34603/_matrix/client/v3/rooms/!djFghgtTMWewoMhhOl%3Alocalhost/send/m.reaction/m1736316414875.3)
at ../pages/client.ts:98
96 | ): Promise<ISendEventResponse> {
97 | const client = await this.prepareClient();
> 98 | return client.evaluate(
| ^
99 | async (client, { roomId, threadId, eventType, content }) => {
100 | return client.sendEvent(
101 | roomId,
at Bot.sendEvent (/home/runner/work/element-web/element-web/playwright/pages/client.ts:98:23)
|
[WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
playwright/pages/client.ts#L98
1) [WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: jsHandle.evaluate: M_DUPLICATE_ANNOTATION: MatrixError: [400] Can't send same reaction twice (http://localhost:39601/_matrix/client/v3/rooms/!mNrNjwikXZyKpkCulm%3Alocalhost/send/m.reaction/m1736316426663.3)
at ../pages/client.ts:98
96 | ): Promise<ISendEventResponse> {
97 | const client = await this.prepareClient();
> 98 | return client.evaluate(
| ^
99 | async (client, { roomId, threadId, eventType, content }) => {
100 | return client.sendEvent(
101 | roomId,
at Bot.sendEvent (/home/runner/work/element-web/element-web/playwright/pages/client.ts:98:23)
|
[WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue:
playwright/pages/client.ts#L98
1) [WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: jsHandle.evaluate: M_DUPLICATE_ANNOTATION: MatrixError: [400] Can't send same reaction twice (http://localhost:41073/_matrix/client/v3/rooms/!gvLhexCcfqmvXNBjew%3Alocalhost/send/m.reaction/m1736316438655.3)
at ../pages/client.ts:98
96 | ): Promise<ISendEventResponse> {
97 | const client = await this.prepareClient();
> 98 | return client.evaluate(
| ^
99 | async (client, { roomId, threadId, eventType, content }) => {
100 | return client.sendEvent(
101 | roomId,
at Bot.sendEvent (/home/runner/work/element-web/element-web/playwright/pages/client.ts:98:23)
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L1
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Test timeout of 30000ms exceeded.
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L310
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
=========================== logs ===========================
waiting for request /http:\/\/localhost:\d+\/_matrix\/client\/v3\/room…/
============================================================
308 |
309 | // the following code tests the fully read marker somewhere in the middle of the room
> 310 | const readMarkersRequestPromise = page.waitForRequest(
| ^
311 | new RegExp(`http://localhost:\\d+/_matrix/client/v3/rooms/${uriEncodedOtherRoomId}/read_markers`),
312 | );
313 |
at /home/runner/work/element-web/element-web/playwright/e2e/read-receipts/read-receipts.spec.ts:310:48
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L314
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByRole('button', { name: 'Jump to first unread message.' })
312 | );
313 |
> 314 | await page.getByRole("button", { name: "Jump to first unread message." }).click();
| ^
315 |
316 | const readMarkersRequest = await readMarkersRequestPromise;
317 | // since this is not pixel perfect,
at /home/runner/work/element-web/element-web/playwright/e2e/read-receipts/read-receipts.spec.ts:314:83
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L1
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L310
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: page.waitForRequest: Test timeout of 30000ms exceeded.
=========================== logs ===========================
waiting for request /http:\/\/localhost:\d+\/_matrix\/client\/v3\/room…/
============================================================
308 |
309 | // the following code tests the fully read marker somewhere in the middle of the room
> 310 | const readMarkersRequestPromise = page.waitForRequest(
| ^
311 | new RegExp(`http://localhost:\\d+/_matrix/client/v3/rooms/${uriEncodedOtherRoomId}/read_markers`),
312 | );
313 |
at /home/runner/work/element-web/element-web/playwright/e2e/read-receipts/read-receipts.spec.ts:310:48
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L314
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.click: Test timeout of 30000ms exceeded.
Call log:
- waiting for getByRole('button', { name: 'Jump to first unread message.' })
312 | );
313 |
> 314 | await page.getByRole("button", { name: "Jump to first unread message." }).click();
| ^
315 |
316 | const readMarkersRequest = await readMarkersRequestPromise;
317 | // since this is not pixel perfect,
at /home/runner/work/element-web/element-web/playwright/e2e/read-receipts/read-receipts.spec.ts:314:83
|
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue:
playwright/e2e/read-receipts/read-receipts.spec.ts#L1
2) [WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
end-to-end-tests
Process completed with exit code 1.
|
Slow Test:
[Chrome] › read-receipts/high-level.spec.ts#L1
[Chrome] › read-receipts/high-level.spec.ts took 3.2m
|
Slow Test:
[Chrome] › messages/messages.spec.ts#L1
[Chrome] › messages/messages.spec.ts took 2.4m
|
Slow Test:
[Chrome] › pinned-messages/pinned-messages.spec.ts#L1
[Chrome] › pinned-messages/pinned-messages.spec.ts took 1.7m
|
Slow Test:
[Chrome] › read-receipts/new-messages-in-threads.spec.ts#L1
[Chrome] › read-receipts/new-messages-in-threads.spec.ts took 1.6m
|
Slow Test:
[Chrome] › read-receipts/new-messages-main-timeline.spec.ts#L1
[Chrome] › read-receipts/new-messages-main-timeline.spec.ts took 1.1m
|
Slow Test:
[Chrome] › read-receipts/redactions-in-threads.spec.ts#L1
[Chrome] › read-receipts/redactions-in-threads.spec.ts took 2.5m
|
Slow Test:
[Chrome] › read-receipts/redactions-main-timeline.spec.ts#L1
[Chrome] › read-receipts/redactions-main-timeline.spec.ts took 2.0m
|
Slow Test:
[Chrome] › read-receipts/read-receipts.spec.ts#L1
[Chrome] › read-receipts/read-receipts.spec.ts took 1.1m
|
Slow Test:
[Chrome] › read-receipts/reactions-in-threads.spec.ts#L1
[Chrome] › read-receipts/reactions-in-threads.spec.ts took 57.4s
|
Slow Test:
[Chrome] › read-receipts/redactions-thread-roots.spec.ts#L1
[Chrome] › read-receipts/redactions-thread-roots.spec.ts took 54.4s
|
Slow Test:
[Chrome] › crypto/event-shields.spec.ts#L1
[Chrome] › crypto/event-shields.spec.ts took 1.2m
|
Slow Test:
[Chrome] › composer/RTE.spec.ts#L1
[Chrome] › composer/RTE.spec.ts took 1.2m
|
Slow Test:
[Chrome] › audio-player/audio-player.spec.ts#L1
[Chrome] › audio-player/audio-player.spec.ts took 1.2m
|
Slow Test:
[Chrome] › login/login.spec.ts#L1
[Chrome] › login/login.spec.ts took 1.1m
|
Slow Test:
[Chrome] › crypto/crypto.spec.ts#L1
[Chrome] › crypto/crypto.spec.ts took 1.0m
|
Slow Test:
[Firefox] › spotlight/spotlight.spec.ts#L1
[Firefox] › spotlight/spotlight.spec.ts took 2.9m
|
Slow Test:
[Firefox] › timeline/timeline.spec.ts#L1
[Firefox] › timeline/timeline.spec.ts took 2.5m
|
Slow Test:
[Firefox] › spaces/spaces.spec.ts#L1
[Firefox] › spaces/spaces.spec.ts took 1.3m
|
Slow Test:
[Firefox] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts#L1
[Firefox] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts took 41.0s
|
Slow Test:
[Firefox] › settings/appearance-user-settings-tab/theme-choice-panel.spec.ts#L1
[Firefox] › settings/appearance-user-settings-tab/theme-choice-panel.spec.ts took 40.9s
|
Slow Test:
[Chrome] › timeline/timeline.spec.ts#L1
[Chrome] › timeline/timeline.spec.ts took 2.6m
|
Slow Test:
[Chrome] › spotlight/spotlight.spec.ts#L1
[Chrome] › spotlight/spotlight.spec.ts took 2.2m
|
Slow Test:
[Chrome] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts#L1
[Chrome] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts took 1.5m
|
Slow Test:
[Chrome] › spaces/spaces.spec.ts#L1
[Chrome] › spaces/spaces.spec.ts took 1.0m
|
Slow Test:
[Chrome] › user-onboarding/user-onboarding-new.spec.ts#L1
[Chrome] › user-onboarding/user-onboarding-new.spec.ts took 35.3s
|
Slow Test:
[WebKit] › spotlight/spotlight.spec.ts#L1
[WebKit] › spotlight/spotlight.spec.ts took 2.5m
|
Slow Test:
[WebKit] › timeline/timeline.spec.ts#L1
[WebKit] › timeline/timeline.spec.ts took 2.3m
|
Slow Test:
[WebKit] › sliding-sync/sliding-sync.spec.ts#L1
[WebKit] › sliding-sync/sliding-sync.spec.ts took 2.0m
|
Slow Test:
[WebKit] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts#L1
[WebKit] › spaces/threads-activity-centre/threadsActivityCentre.spec.ts took 1.7m
|
Slow Test:
[WebKit] › spaces/spaces.spec.ts#L1
[WebKit] › spaces/spaces.spec.ts took 59.1s
|
Slow Test:
[WebKit] › read-receipts/high-level.spec.ts#L1
[WebKit] › read-receipts/high-level.spec.ts took 3.6m
|
Slow Test:
[WebKit] › messages/messages.spec.ts#L1
[WebKit] › messages/messages.spec.ts took 3.0m
|
Slow Test:
[WebKit] › read-receipts/new-messages-in-threads.spec.ts#L1
[WebKit] › read-receipts/new-messages-in-threads.spec.ts took 2.0m
|
Slow Test:
[WebKit] › pinned-messages/pinned-messages.spec.ts#L1
[WebKit] › pinned-messages/pinned-messages.spec.ts took 2.0m
|
Slow Test:
[WebKit] › read-receipts/editing-messages-main-timeline.spec.ts#L1
[WebKit] › read-receipts/editing-messages-main-timeline.spec.ts took 1.4m
|
Slow Test:
[Firefox] › read-receipts/high-level.spec.ts#L1
[Firefox] › read-receipts/high-level.spec.ts took 3.9m
|
Slow Test:
[Firefox] › messages/messages.spec.ts#L1
[Firefox] › messages/messages.spec.ts took 3.1m
|
Slow Test:
[Firefox] › pinned-messages/pinned-messages.spec.ts#L1
[Firefox] › pinned-messages/pinned-messages.spec.ts took 2.3m
|
Slow Test:
[Firefox] › read-receipts/new-messages-in-threads.spec.ts#L1
[Firefox] › read-receipts/new-messages-in-threads.spec.ts took 2.2m
|
Slow Test:
[Firefox] › read-receipts/new-messages-main-timeline.spec.ts#L1
[Firefox] › read-receipts/new-messages-main-timeline.spec.ts took 1.6m
|
Slow Test:
[WebKit] › composer/RTE.spec.ts#L1
[WebKit] › composer/RTE.spec.ts took 2.1m
|
Slow Test:
[WebKit] › crypto/event-shields.spec.ts#L1
[WebKit] › crypto/event-shields.spec.ts took 1.5m
|
Slow Test:
[WebKit] › login/login.spec.ts#L1
[WebKit] › login/login.spec.ts took 1.4m
|
Slow Test:
[WebKit] › crypto/crypto.spec.ts#L1
[WebKit] › crypto/crypto.spec.ts took 1.3m
|
Slow Test:
[WebKit] › crypto/backups.spec.ts#L1
[WebKit] › crypto/backups.spec.ts took 58.8s
|
Slow Test:
[Firefox] › read-receipts/redactions-in-threads.spec.ts#L1
[Firefox] › read-receipts/redactions-in-threads.spec.ts took 3.4m
|
Slow Test:
[Firefox] › read-receipts/redactions-main-timeline.spec.ts#L1
[Firefox] › read-receipts/redactions-main-timeline.spec.ts took 2.6m
|
Slow Test:
[Firefox] › read-receipts/read-receipts.spec.ts#L1
[Firefox] › read-receipts/read-receipts.spec.ts took 1.4m
|
Slow Test:
[Firefox] › read-receipts/redactions-thread-roots.spec.ts#L1
[Firefox] › read-receipts/redactions-thread-roots.spec.ts took 1.2m
|
Slow Test:
[Firefox] › read-receipts/new-messages-thread-roots.spec.ts#L1
[Firefox] › read-receipts/new-messages-thread-roots.spec.ts took 1.1m
|
Slow Test:
[WebKit] › read-receipts/redactions-in-threads.spec.ts#L1
[WebKit] › read-receipts/redactions-in-threads.spec.ts took 3.0m
|
Slow Test:
[WebKit] › read-receipts/redactions-main-timeline.spec.ts#L1
[WebKit] › read-receipts/redactions-main-timeline.spec.ts took 2.3m
|
Slow Test:
[WebKit] › right-panel/right-panel.spec.ts#L1
[WebKit] › right-panel/right-panel.spec.ts took 1.1m
|
Slow Test:
[WebKit] › read-receipts/new-messages-thread-roots.spec.ts#L1
[WebKit] › read-receipts/new-messages-thread-roots.spec.ts took 1.0m
|
Slow Test:
[WebKit] › read-receipts/redactions-thread-roots.spec.ts#L1
[WebKit] › read-receipts/redactions-thread-roots.spec.ts took 1.0m
|
Slow Test:
[Firefox] › crypto/event-shields.spec.ts#L1
[Firefox] › crypto/event-shields.spec.ts took 1.6m
|
Slow Test:
[Firefox] › composer/RTE.spec.ts#L1
[Firefox] › composer/RTE.spec.ts took 1.6m
|
Slow Test:
[Firefox] › login/login.spec.ts#L1
[Firefox] › login/login.spec.ts took 1.4m
|
Slow Test:
[Firefox] › crypto/crypto.spec.ts#L1
[Firefox] › crypto/crypto.spec.ts took 1.4m
|
Slow Test:
[Firefox] › crypto/backups.spec.ts#L1
[Firefox] › crypto/backups.spec.ts took 1.1m
|
🎭 Playwright Run Summary
32 skipped
90 passed (14.6m)
|
🎭 Playwright Run Summary
2 flaky
[Chrome] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread
[Chrome] › room-directory/room-directory.spec.ts:18:9 › Room Directory › should allow admin to add alias & publish room to directory @no-webkit
15 skipped
95 passed (14.8m)
|
🎭 Playwright Run Summary
1 flaky
[Chrome] › app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ───
1 skipped
118 passed (17.5m)
|
🎭 Playwright Run Summary
3 flaky
[Firefox] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
[Firefox] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
[Firefox] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch
30 skipped
82 passed (17.5m)
|
🎭 Playwright Run Summary
7 flaky
[Chrome] › settings/appearance-user-settings-tab/message-layout-panel.spec.ts:42:13 › Appearance user settings tab › Message Layout Panel › should enable compact layout when the modern layout is selected
[Chrome] › settings/general-room-settings-tab.spec.ts:39:9 › General room settings tab › long address should not cause dialog to overflow @no-webkit
[Chrome] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
[Chrome] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
[Chrome] › share-dialog/share-dialog.spec.ts:49:9 › Share dialog › should share an event @screenshot
[Chrome] › sliding-sync/sliding-sync.spec.ts:225:5 › Sliding Sync › should show and be able to accept/reject/rescind invites
[Chrome] › sliding-sync/sliding-sync.spec.ts:366:5 › Sliding Sync › should send unsubscribe_rooms for every room switch
4 skipped
104 passed (17.4m)
|
🎭 Playwright Run Summary
2 flaky
[WebKit] › share-dialog/share-dialog.spec.ts:19:9 › Share dialog › should share a room @screenshot
[WebKit] › share-dialog/share-dialog.spec.ts:32:9 › Share dialog › should share a room member @screenshot
21 skipped
92 passed (16.5m)
|
🎭 Playwright Run Summary
1 flaky
[WebKit] › read-receipts/new-messages-main-timeline.spec.ts:32:17 › Read receipts › new messages › in the main timeline › Reading latest message makes the room read @mergequeue
33 skipped
88 passed (17.6m)
|
🎭 Playwright Run Summary
33 skipped
89 passed (18.8m)
|
🎭 Playwright Run Summary
1 flaky
[WebKit] › lazy-loading/lazy-loading.spec.ts:110:9 › Lazy Loading › should handle lazy loading properly even when offline
17 skipped
102 passed (19.4m)
|
🎭 Playwright Run Summary
2 failed
[Firefox] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
[Firefox] › right-panel/right-panel.spec.ts:41:13 › RightPanel › in rooms › should handle long room address and long room name @screenshot
1 flaky
[Firefox] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread
19 skipped
90 passed (20.0m)
|
🎭 Playwright Run Summary
2 failed
[WebKit] › read-receipts/reactions-in-threads.spec.ts:64:17 › Read receipts › reactions › in threads › Reacting to a thread message after marking as read does not make the room unread @mergequeue
[WebKit] › read-receipts/read-receipts.spec.ts:279:9 › Read receipts › Should send the correct receipts @mergequeue
4 flaky
[WebKit] › read-receipts/read-receipts.spec.ts:246:9 › Read receipts › Recognises unread messages on main after receiving a unthreaded receipt for a thread message @mergequeue
[WebKit] › room/room-header.spec.ts:23:13 › Room Header › with feature_notifications enabled › should render default buttons properly @screenshot
[WebKit] › room/room.spec.ts:56:9 › Room Directory › should memorize the timeline position when switch Room A -> Room B -> Room A
[WebKit] › room_options/marked_unread.spec.ts:22:9 › Mark as Unread › should mark a room as unread
20 skipped
86 passed (19.9m)
|
🎭 Playwright Run Summary
11 skipped
109 passed (21.1m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
all-blob-reports-Chrome-1
|
3.93 MB |
|
all-blob-reports-Chrome-2
|
434 KB |
|
all-blob-reports-Chrome-3
|
8.09 MB |
|
all-blob-reports-Chrome-4
|
25.4 MB |
|
all-blob-reports-Firefox-1
|
3.14 MB |
|
all-blob-reports-Firefox-2
|
431 KB |
|
all-blob-reports-Firefox-3
|
23.7 MB |
|
all-blob-reports-Firefox-4
|
20.9 MB |
|
all-blob-reports-WebKit-1
|
10.4 MB |
|
all-blob-reports-WebKit-2
|
3.59 MB |
|
all-blob-reports-WebKit-3
|
35.3 MB |
|
all-blob-reports-WebKit-4
|
12.2 MB |
|
html-report
|
113 MB |
|
webapp
|
28.5 MB |
|