Update npm non-major dependencies #37
Annotations
12 errors and 1 notice
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L116
4) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:111:9 › Room Status Bar › Message fails to send › should show an error when a message fails to send @screenshot
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 80px, received 961px by 80px. 4182 pixels (ratio 0.06 of all image pixels) are different.
Snapshot: message-failed.png
Call log:
- Expect "toHaveScreenshot(message-failed.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 80px, received 961px by 80px. 4181 pixels (ratio 0.06 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 80px, received 961px by 80px. 4182 pixels (ratio 0.06 of all image pixels) are different.
114 | async ({ page, user, app, room, axe }) => {
115 | const banner = page.getByRole("region", { name: "Room status bar" });
> 116 | await expect(banner).toMatchScreenshot("message_failed.png");
| ^
117 | },
118 | );
119 | test("should be able to 'Delete all' messages", async ({ page, user, app, room, axe }) => {
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:116:38
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L85
3) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:60:5 › Room Status Bar › should show an error when the user needs to consent @screenshot
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
Snapshot: consent.png
Call log:
- Expect "toHaveScreenshot(consent.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
83 | const banner = page.getByRole("region", { name: "Room status bar" });
84 | await expect(banner).toBeVisible({ timeout: 15000 });
> 85 | await expect(banner).toMatchScreenshot("consent.png");
| ^
86 |
87 | // Click consent
88 | await banner.getByRole("link", { name: "View Terms and Conditions" }).click();
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:85:34
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L85
3) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:60:5 › Room Status Bar › should show an error when the user needs to consent @screenshot
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
Snapshot: consent.png
Call log:
- Expect "toHaveScreenshot(consent.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
83 | const banner = page.getByRole("region", { name: "Room status bar" });
84 | await expect(banner).toBeVisible({ timeout: 15000 });
> 85 | await expect(banner).toMatchScreenshot("consent.png");
| ^
86 |
87 | // Click consent
88 | await banner.getByRole("link", { name: "View Terms and Conditions" }).click();
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:85:34
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L85
3) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:60:5 › Room Status Bar › should show an error when the user needs to consent @screenshot
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
Snapshot: consent.png
Call log:
- Expect "toHaveScreenshot(consent.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 71px, received 961px by 71px. 3614 pixels (ratio 0.06 of all image pixels) are different.
83 | const banner = page.getByRole("region", { name: "Room status bar" });
84 | await expect(banner).toBeVisible({ timeout: 15000 });
> 85 | await expect(banner).toMatchScreenshot("consent.png");
| ^
86 |
87 | // Click consent
88 | await banner.getByRole("link", { name: "View Terms and Conditions" }).click();
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:85:34
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L39
2) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:28:5 › Room Status Bar › should show an error when sync stops @screenshot
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
Snapshot: connectivity-lost.png
Call log:
- Expect "toHaveScreenshot(connectivity-lost.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
37 | const banner = page.getByRole("region", { name: "Room status bar" });
38 | await expect(banner).toBeVisible({ timeout: 15000 });
> 39 | await expect(banner).toMatchScreenshot("connectivity_lost.png");
| ^
40 | });
41 | test("should NOT an error when a resource limit is hit", async ({ page, user, app, room, axe, toasts }) => {
42 | await app.viewRoomById(room.roomId);
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:39:30
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L39
2) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:28:5 › Room Status Bar › should show an error when sync stops @screenshot
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
Snapshot: connectivity-lost.png
Call log:
- Expect "toHaveScreenshot(connectivity-lost.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
37 | const banner = page.getByRole("region", { name: "Room status bar" });
38 | await expect(banner).toBeVisible({ timeout: 15000 });
> 39 | await expect(banner).toMatchScreenshot("connectivity_lost.png");
| ^
40 | });
41 | test("should NOT an error when a resource limit is hit", async ({ page, user, app, room, axe, toasts }) => {
42 | await app.viewRoomById(room.roomId);
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:39:30
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/room-status-bar.spec.ts#L39
2) [Chrome] › playwright/e2e/room/room-status-bar.spec.ts:28:5 › Room Status Bar › should show an error when sync stops @screenshot
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: getByRole('region', { name: 'Room status bar' })
Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
Snapshot: connectivity-lost.png
Call log:
- Expect "toHaveScreenshot(connectivity-lost.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for getByRole('region', { name: 'Room status bar' })
- locator resolved to <div role="region" aria-label="Room status bar" class="mx_RoomView_statusArea mx_RoomView_statusArea_expanded">…</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
- captured a stable screenshot
- Expected an image 962px by 80px, received 961px by 80px. 3653 pixels (ratio 0.05 of all image pixels) are different.
37 | const banner = page.getByRole("region", { name: "Room status bar" });
38 | await expect(banner).toBeVisible({ timeout: 15000 });
> 39 | await expect(banner).toMatchScreenshot("connectivity_lost.png");
| ^
40 | });
41 | test("should NOT an error when a resource limit is hit", async ({ page, user, app, room, axe, toasts }) => {
42 | await app.viewRoomById(room.roomId);
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/room-status-bar.spec.ts:39:30
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/invites.spec.ts#L22
1) [Chrome] › playwright/e2e/room/invites.spec.ts:18:5 › Invites › should render an invite view @screenshot
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: locator('.mx_RoomView')
Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
Snapshot: Invites-room-view.png
Call log:
- Expect "toHaveScreenshot(Invites-room-view.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- captured a stable screenshot
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
20 | await bot.inviteUser(roomId, user.userId);
21 | await app.viewRoomByName("Bob");
> 22 | await expect(page.locator(".mx_RoomView")).toMatchScreenshot("Invites_room_view.png", {
| ^
23 | // Hide the mxid, which is not stable.
24 | css: `
25 | .mx_RoomPreviewBar_inviter_mxid {
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/invites.spec.ts:22:52
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/invites.spec.ts#L22
1) [Chrome] › playwright/e2e/room/invites.spec.ts:18:5 › Invites › should render an invite view @screenshot
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: locator('.mx_RoomView')
Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
Snapshot: Invites-room-view.png
Call log:
- Expect "toHaveScreenshot(Invites-room-view.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- captured a stable screenshot
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
20 | await bot.inviteUser(roomId, user.userId);
21 | await app.viewRoomByName("Bob");
> 22 | await expect(page.locator(".mx_RoomView")).toMatchScreenshot("Invites_room_view.png", {
| ^
23 | // Hide the mxid, which is not stable.
24 | css: `
25 | .mx_RoomPreviewBar_inviter_mxid {
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/invites.spec.ts:22:52
|
|
Run Playwright tests:
apps/web/playwright/e2e/room/invites.spec.ts#L22
1) [Chrome] › playwright/e2e/room/invites.spec.ts:18:5 › Invites › should render an invite view @screenshot
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: locator('.mx_RoomView')
Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
Snapshot: Invites-room-view.png
Call log:
- Expect "toHaveScreenshot(Invites-room-view.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('.mx_RoomView')
- locator resolved to <div class="mx_RoomView">…</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
- captured a stable screenshot
- Expected an image 842px by 720px, received 841px by 720px. 2451 pixels (ratio 0.01 of all image pixels) are different.
20 | await bot.inviteUser(roomId, user.userId);
21 | await app.viewRoomByName("Bob");
> 22 | await expect(page.locator(".mx_RoomView")).toMatchScreenshot("Invites_room_view.png", {
| ^
23 | // Hide the mxid, which is not stable.
24 | css: `
25 | .mx_RoomPreviewBar_inviter_mxid {
at /home/runner/work/element-web/element-web/apps/web/playwright/e2e/room/invites.spec.ts:22:52
|
|
|
|
|
|
Run Playwright tests
9 failed
[Chrome] › playwright/e2e/room/invites.spec.ts:18:5 › Invites › should render an invite view @screenshot
[Chrome] › playwright/e2e/room/room-status-bar.spec.ts:28:5 › Room Status Bar › should show an error when sync stops @screenshot
[Chrome] › playwright/e2e/room/room-status-bar.spec.ts:60:5 › Room Status Bar › should show an error when the user needs to consent @screenshot
[Chrome] › playwright/e2e/room/room-status-bar.spec.ts:111:9 › Room Status Bar › Message fails to send › should show an error when a message fails to send @screenshot
[Chrome] › playwright/e2e/room/room-status-bar.spec.ts:138:9 › Room Status Bar › Local rooms › should show an error when creating a local room fails @screenshot
[Chrome] › playwright/e2e/settings/appearance-user-settings-tab/appearance-user-settings-tab.spec.ts:60:5 › Appearance user settings tab › should keep same font and emoji when switching theme @screenshot
[Chrome] › playwright/e2e/settings/appearance-user-settings-tab/theme-choice-panel.spec.ts:92:13 › Appearance user settings tab › Theme Choice Panel › custom theme › should keep custom theme when reloading the page @screenshot
[Chrome] › playwright/e2e/spaces/spaces.spec.ts:106:5 › Spaces › should allow user to create private space @screenshot
[Chrome] › playwright/e2e/spaces/spaces.spec.ts:350:5 › Spaces › should render spaces view @screenshot
2 skipped
121 passed (17.5m)
|
Loading