This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
Update dependency is-ip to v5 #566
Annotations
10 errors, 3 warnings, and 1 notice
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L67
1) accessibility/keyboard-navigation.spec.ts:50:9 › Landmark navigation tests › with an open room
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
65 | await app.viewRoomByName("Bob");
66 | // confirm the room was loaded
> 67 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
68 |
69 | // Pressing Control+F6 will first focus the space button
70 | await page.keyboard.press("ControlOrMeta+F6");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:67:61
|
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L67
1) accessibility/keyboard-navigation.spec.ts:50:9 › Landmark navigation tests › with an open room
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
65 | await app.viewRoomByName("Bob");
66 | // confirm the room was loaded
> 67 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
68 |
69 | // Pressing Control+F6 will first focus the space button
70 | await page.keyboard.press("ControlOrMeta+F6");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:67:61
|
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L67
1) accessibility/keyboard-navigation.spec.ts:50:9 › Landmark navigation tests › with an open room
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
65 | await app.viewRoomByName("Bob");
66 | // confirm the room was loaded
> 67 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
68 |
69 | // Pressing Control+F6 will first focus the space button
70 | await page.keyboard.press("ControlOrMeta+F6");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:67:61
|
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L120
2) accessibility/keyboard-navigation.spec.ts:103:9 › Landmark navigation tests › without an open room
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
118 | await app.viewRoomByName("Bob");
119 | // confirm the room was loaded
> 120 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
121 |
122 | // Close the room
123 | page.goto("/#/home");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:120:61
|
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L120
2) accessibility/keyboard-navigation.spec.ts:103:9 › Landmark navigation tests › without an open room
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
118 | await app.viewRoomByName("Bob");
119 | // confirm the room was loaded
> 120 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
121 |
122 | // Close the room
123 | page.goto("/#/home");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:120:61
|
matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts#L120
2) accessibility/keyboard-navigation.spec.ts:103:9 › Landmark navigation tests › without an open room
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByText('Bob joined the room')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByText('Bob joined the room')
118 | await app.viewRoomByName("Bob");
119 | // confirm the room was loaded
> 120 | await expect(page.getByText("Bob joined the room")).toBeVisible();
| ^
121 |
122 | // Close the room
123 | page.goto("/#/home");
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/accessibility/keyboard-navigation.spec.ts:120:61
|
matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts#L1
3) app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ─────────────
Test timeout of 30000ms exceeded.
|
matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts#L39
3) app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ─────────────
Error: page.waitForSelector: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('.mx_MatrixChat') to be visible
37 | // And back again
38 | await page.goto("/");
> 39 | await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
| ^
40 |
41 | // Check that the room reloaded
42 | await expect(page).toHaveURL(/\/#\/room\//);
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts:39:16
|
matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts#L1
3) app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ─────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts#L39
3) app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ─────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: page.waitForSelector: Test timeout of 30000ms exceeded.
Call log:
- waiting for locator('.mx_MatrixChat') to be visible
37 | // And back again
38 | await page.goto("/");
> 39 | await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
| ^
40 |
41 | // Check that the room reloaded
42 | await expect(page).toHaveURL(/\/#\/room\//);
at /home/runner/work/matrix-react-sdk/matrix-react-sdk/matrix-react-sdk/playwright/e2e/app-loading/stored-credentials.spec.ts:39:16
|
matrix-react-sdk/crypto/device-verification.spec.ts#L1
matrix-react-sdk/crypto/device-verification.spec.ts took 51.0s
|
matrix-react-sdk/forgot-password/forgot-password.spec.ts#L1
matrix-react-sdk/forgot-password/forgot-password.spec.ts took 22.3s
|
matrix-react-sdk/crypto/migration.spec.ts#L1
matrix-react-sdk/crypto/migration.spec.ts took 16.8s
|
54 failed
accessibility/keyboard-navigation.spec.ts:50:9 › Landmark navigation tests › with an open room ─
accessibility/keyboard-navigation.spec.ts:103:9 › Landmark navigation tests › without an open room
app-loading/stored-credentials.spec.ts:26:5 › Shows the last known page on reload ──────────────
audio-player/audio-player.spec.ts:137:9 › Audio player › should be correctly rendered - light theme
audio-player/audio-player.spec.ts:142:9 › Audio player › should be correctly rendered - light theme with monospace font
audio-player/audio-player.spec.ts:148:9 › Audio player › should be correctly rendered - high contrast theme
audio-player/audio-player.spec.ts:164:9 › Audio player › should be correctly rendered - dark theme
audio-player/audio-player.spec.ts:173:9 › Audio player › should play an audio file ─────────────
audio-player/audio-player.spec.ts:195:9 › Audio player › should support downloading an audio file
audio-player/audio-player.spec.ts:210:9 › Audio player › should support replying to audio file with another audio file
audio-player/audio-player.spec.ts:235:9 › Audio player › should support creating a reply chain with multiple audio files
audio-player/audio-player.spec.ts:297:9 › Audio player › should be rendered, play, and support replying on a thread
chat-export/html-export.spec.ts:92:9 › HTML Export › should export html successfully and match screenshot
composer/CIDER.spec.ts:30:13 › Composer › CIDER › sends a message when you click send or press Enter
composer/CIDER.spec.ts:54:13 › Composer › CIDER › can write formatted text ─────────────────────
composer/CIDER.spec.ts:65:13 › Composer › CIDER › should allow user to input emoji via graphical picker
composer/CIDER.spec.ts:81:17 › Composer › CIDER › when Control+Enter is required to send › only sends when you press Control+Enter
composer/RTE.spec.ts:38:21 › Composer › Rich text editor › Commands › Plain text mode › autocomplete behaviour tests
composer/RTE.spec.ts:156:13 › Composer › Rich text editor › sends a message when you click send or press Enter
composer/RTE.spec.ts:175:13 › Composer › Rich text editor › sends only one message when you press Enter multiple times
composer/RTE.spec.ts:190:13 › Composer › Rich text editor › can write formatted text ───────────
composer/RTE.spec.ts:205:17 › Composer › Rich text editor › when Control+Enter is required to send › only sends when you press Control+Enter
composer/RTE.spec.ts:222:17 › Composer › Rich text editor › links › create link with a forward selection
composer/RTE.spec.ts:246:17 › Composer › Rich text editor › Drafts › drafts with rich and plain text
composer/RTE.spec.ts:283:17 › Composer › Rich text editor › Drafts › draft with replies ────────
composer/RTE.spec.ts:314:17 › Composer › Rich text editor › Drafts › draft in threads ──────────
create-room/create-room.spec.ts:14:9 › Create Room › should allow us to create a public room with name, topic & address set
crypto/crypto.spec.ts:205:9 › Cryptography › creating a DM should work, being e2e-encrypted / user verification
crypto/crypto.spec.ts:230:9 › Cryptography › should allow verification when there is no existing DM
crypto/decryption-failure-messages.spec.ts:31:13 › Cryptography › decryption failure messages › should handle device-relative historical messages
crypto/decryption-failure-messages.spec.ts:95:17 › Cryptography › decryption failure messages › non-joined historical messages › should display undecryptable non-joined historical messages with a different message
crypto/decryption-failure-messages.spec.ts:200:17 › Cryptography › decryption failure messages › non-joined historical messages › should be able to jump to a message sent before our last join event
crypto/dehydration.spec.ts:52:5 › Dehydration › Create dehydrated device ───────────────────────
crypto/event-shields.spec.ts:51:13 › Cryptography › event shields › should show the correct shield on e2e events
crypto/event-shield
|
The logs for this run have expired and are no longer available.
Loading