refactor(editor): modular custom specs #26400
build-test.yml
on: pull_request
Optimize CI
5s
Matrix: build-native
Matrix: Analyze
Matrix: Legacy Blocksuite E2E Test
Matrix: E2E Mobile Test
Matrix: E2E Test
Lint
6m 2s
Lint Rust
29s
Check yarn binary
6s
Run native tests
2m 10s
Matrix: Server Copilot E2E Test
Matrix: Server Test
Matrix: Unit Test
Matrix: server-e2e-test
Matrix: desktop-test
3, 2, 1 Launch
0s
Annotations
20 errors, 29 warnings, and 27 notices
[Mobile Safari] › e2e/home.spec.ts:44:1 › all tab:
tests/affine-mobile/e2e/home.spec.ts#L1
1) [Mobile Safari] › e2e/home.spec.ts:44:1 › all tab ─────────────────────────────────────────────
Test timeout of 60000ms exceeded.
|
[Mobile Safari] › e2e/home.spec.ts:44:1 › all tab:
tests/affine-mobile/e2e/home.spec.ts#L46
1) [Mobile Safari] › e2e/home.spec.ts:44:1 › all tab ─────────────────────────────────────────────
Error: expect(locator).toBeVisible()
Locator: locator('#app-tabs').getByRole('tab', { name: 'all' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 15000ms
- waiting for locator('#app-tabs').getByRole('tab', { name: 'all' })
44 | test('all tab', async ({ page }) => {
45 | const docsTab = page.locator('#app-tabs').getByRole('tab', { name: 'all' });
> 46 | await expect(docsTab).toBeVisible();
| ^
47 |
48 | await docsTab.click();
49 |
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/home.spec.ts:46:25
|
[Mobile Safari] › e2e/settings.spec.ts:10:1 › can open settings:
tests/affine-mobile/e2e/settings.spec.ts#L1
2) [Mobile Safari] › e2e/settings.spec.ts:10:1 › can open settings ───────────────────────────────
Test timeout of 60000ms exceeded.
|
[Mobile Safari] › e2e/settings.spec.ts:10:1 › can open settings:
tests/affine-mobile/e2e/settings.spec.ts#L5
2) [Mobile Safari] › e2e/settings.spec.ts:10:1 › can open settings ───────────────────────────────
Error: locator.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for getByTestId('settings-button')
3 |
4 | const openSettings = async (page: Page) => {
> 5 | await page.getByTestId('settings-button').click();
| ^
6 | await expect(page.getByRole('dialog')).toBeVisible();
7 | await expect(page.locator('header:has-text("Settings")')).toBeVisible();
8 | };
at openSettings (/home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/settings.spec.ts:5:45)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/settings.spec.ts:11:9
|
e2e/attachment.spec.ts:153:1 › should undo/redo works for attachment:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L74
1) e2e/attachment.spec.ts:153:1 › should undo/redo works for attachment ──────────────────────────
TimeoutError: page.waitForEvent: Timeout 5000ms exceeded while waiting for event "filechooser"
=========================== logs ===========================
waiting for event "filechooser"
============================================================
72 | await expect(slashMenu).toBeVisible();
73 |
> 74 | const fileChooser = page.waitForEvent('filechooser');
| ^
75 | await pressEnter(page);
76 | await sleep(100);
77 | await (await fileChooser).setFiles(FILE_PATH);
at insertAttachment (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:74:30)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:160:3
|
e2e/attachment.spec.ts:264:1 › support dragging attachment block directly:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L74
2) e2e/attachment.spec.ts:264:1 › support dragging attachment block directly ─────────────────────
TimeoutError: page.waitForEvent: Timeout 5000ms exceeded while waiting for event "filechooser"
=========================== logs ===========================
waiting for event "filechooser"
============================================================
72 | await expect(slashMenu).toBeVisible();
73 |
> 74 | const fileChooser = page.waitForEvent('filechooser');
| ^
75 | await pressEnter(page);
76 | await sleep(100);
77 | await (await fileChooser).setFiles(FILE_PATH);
at insertAttachment (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:74:30)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:274:3
|
e2e/attachment.spec.ts:380:1 › indent attachment block to paragraph:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L74
3) e2e/attachment.spec.ts:380:1 › indent attachment block to paragraph ───────────────────────────
TimeoutError: page.waitForEvent: Timeout 5000ms exceeded while waiting for event "filechooser"
=========================== logs ===========================
waiting for event "filechooser"
============================================================
72 | await expect(slashMenu).toBeVisible();
73 |
> 74 | const fileChooser = page.waitForEvent('filechooser');
| ^
75 | await pressEnter(page);
76 | await sleep(100);
77 | await (await fileChooser).setFiles(FILE_PATH);
at insertAttachment (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:74:30)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:387:3
|
e2e/clipboard/list.spec.ts:308:1 › paste non-nested lists to a nested list:
blocksuite/tests-legacy/e2e/utils/asserts.ts#L205
4) e2e/clipboard/list.spec.ts:308:1 › paste non-nested lists to a nested list ────────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 2
+ Received + 2
Array [
- "123",
- "456aaa",
+ "aaa123",
+ "456",
"bbb",
]
at utils/asserts.ts:205
203 | });
204 | });
> 205 | expect(actualTexts).toEqual(texts);
| ^
206 | }
207 |
208 | export async function assertEdgelessCanvasText(page: Page, text: string) {
at assertRichTexts (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/utils/asserts.ts:205:23)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/clipboard/list.spec.ts:343:3
|
e2e/slash-menu.spec.ts:365:3 › slash menu should show and hide correctly › should open and close menu when using left right arrow:
blocksuite/tests-legacy/e2e/slash-menu.spec.ts#L388
1) e2e/slash-menu.spec.ts:365:3 › slash menu should show and hide correctly › should open and close menu when using left right arrow, Enter, Esc keys
Error: Timed out 5000ms waiting for expect(locator).toHaveAttribute(expected)
Locator: locator('.slash-menu[data-testid=sub-menu-0]').locator('icon-button').nth(4)
Expected string: "true"
Received string: "false"
Call log:
- expect.toHaveAttribute with timeout 5000ms
- waiting for locator('.slash-menu[data-testid=sub-menu-0]').locator('icon-button').nth(4)
9 × locator resolved to <icon-button width="100%" tabindex="0" height="44px" hover="false" role="button" text="Other Headings" data-test-disabled="false" data-testid="Other Headings" class="slash-menu-item other-headings">…</icon-button>
- unexpected value "false"
386 | await type(page, '/');
387 | await pressArrowDown(page, 4);
> 388 | await expect(slashItems.nth(4)).toHaveAttribute('hover', 'true');
| ^
389 | await expect(slashItems.nth(4).locator('.text')).toHaveText([
390 | 'Other Headings',
391 | ]);
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/slash-menu.spec.ts:388:37
|
e2e/page-properties.spec.ts:236:1 › edit property name:
tests/affine-local/e2e/page-properties.spec.ts#L1
1) e2e/page-properties.spec.ts:236:1 › edit property name ────────────────────────────────────────
Test timeout of 50000ms exceeded.
|
e2e/page-properties.spec.ts:262:1 › delete property via property popup:
tests/affine-local/e2e/page-properties.spec.ts#L1
2) e2e/page-properties.spec.ts:262:1 › delete property via property popup ────────────────────────
Test timeout of 50000ms exceeded.
|
e2e/links.spec.ts:279:1 › allow switching to embed view when linking to the other document with mode:
tests/affine-local/e2e/links.spec.ts#L320
1) e2e/links.spec.ts:279:1 › allow switching to embed view when linking to the other document with mode
TimeoutError: locator.click: Timeout 5000ms exceeded.
Call log:
- waiting for locator('affine-embed-card-toolbar').getByLabel('Switch view')
318 | // refocus
319 | await cardLink.click();
> 320 | await cardToolbar.getByLabel('Switch view').click();
| ^
321 |
322 | await clickable(cardToolbar.getByLabel('Inline view'));
323 | await notClickable(cardToolbar.getByLabel('Card view'));
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:320:47
|
e2e/links.spec.ts:583:1 › should show edgeless content when switching card view of linked mode doc in edgeless:
tests/affine-local/e2e/links.spec.ts#L625
2) e2e/links.spec.ts:583:1 › should show edgeless content when switching card view of linked mode doc in edgeless
TimeoutError: locator.click: Timeout 5000ms exceeded.
Call log:
- waiting for getByLabel('Switch view')
623 | .waitFor({ state: 'visible' });
624 | await page.mouse.click(x - 50, y - 50);
> 625 | await page.getByLabel('Switch view').click();
| ^
626 | await page.getByTestId('link-to-embed').click();
627 |
628 | const viewport = await page
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:625:40
|
e2e/links.spec.ts:812:3 › Customize linked doc title and description › should automatically switch to card view and set a custom title and description:
tests/affine-local/e2e/links.spec.ts#L1
1) e2e/links.spec.ts:812:3 › Customize linked doc title and description › should automatically switch to card view and set a custom title and description
Test timeout of 50000ms exceeded.
|
e2e/links.spec.ts:812:3 › Customize linked doc title and description › should automatically switch to card view and set a custom title and description:
tests/affine-local/e2e/links.spec.ts#L831
1) e2e/links.spec.ts:812:3 › Customize linked doc title and description › should automatically switch to card view and set a custom title and description
Error: locator.click: Test timeout of 50000ms exceeded.
Call log:
- waiting for locator('reference-popup').getByRole('button', { name: 'Card view' })
- locator resolved to <editor-menu-action role="button" aria-label="Card view" data-testid="link-to-card">…</editor-menu-action>
- attempting click action
- waiting for element to be visible, enabled and stable
- element is visible, enabled and stable
- scrolling into view if needed
- done scrolling
- performing click action
829 | // Switches to card view
830 | await inlineToolbar.getByRole('button', { name: 'Switch view' }).click();
> 831 | await inlineToolbar.getByRole('button', { name: 'Card view' }).click();
| ^
832 |
833 | const cardLink = page.locator('affine-embed-linked-doc-block');
834 | const cardTitle = cardLink.locator(
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:831:68
|
e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document:
tests/affine-local/e2e/links.spec.ts#L1
2) e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document
Test timeout of 50000ms exceeded.
|
e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document:
tests/kit/src/utils/page-logic.ts#L60
2) e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document
Error: page.waitForTimeout: Test timeout of 50000ms exceeded.
at ../../kit/src/utils/page-logic.ts:60
58 | export const createLinkedPage = async (page: Page, pageName?: string) => {
59 | // fixme: workaround for @ popover not showing up when editor is not ready
> 60 | await page.waitForTimeout(500);
| ^
61 | await page.keyboard.type('@', { delay: 50 });
62 | const linkedPagePopover = page.locator('.linked-doc-popover');
63 | await expect(linkedPagePopover).toBeVisible();
at createLinkedPage (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:60:14)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:963:11
|
e2e/blocksuite/outline/outline-panel.spec.ts:108:3 › TOC display › should not display headings when there are only empty headings:
tests/affine-local/e2e/blocksuite/outline/outline-panel.spec.ts#L1
1) e2e/blocksuite/outline/outline-panel.spec.ts:108:3 › TOC display › should not display headings when there are only empty headings
Test timeout of 50000ms exceeded.
|
e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings:
tests/affine-local/e2e/blocksuite/outline/outline-panel.spec.ts#L1
2) e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings
Test timeout of 50000ms exceeded.
|
e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings:
tests/kit/src/utils/page-logic.ts#L55
2) e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings
Error: keyboard.type: Test timeout of 50000ms exceeded.
at ../../kit/src/utils/page-logic.ts:55
53 |
54 | export async function type(page: Page, content: string, delay = 50) {
> 55 | await page.keyboard.type(content, { delay });
| ^
56 | }
57 |
58 | export const createLinkedPage = async (page: Page, pageName?: string) => {
at type (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:55:23)
at createHeadings (/home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/blocksuite/outline/utils.ts:24:11)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/blocksuite/outline/outline-panel.spec.ts:131:22
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-tag.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-tag.spec.ts took 52.6s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/detail.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/detail.spec.ts took 52.4s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-favorite.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-favorite.spec.ts took 48.9s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/back-button-visibility.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/back-button-visibility.spec.ts took 49.5s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts took 28.2s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/back-button-visibility.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/back-button-visibility.spec.ts took 15.1s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts took 55.2s
|
Slow Test:
tests/affine-desktop-cloud/e2e/basic.spec.ts#L1
tests/affine-desktop-cloud/e2e/basic.spec.ts took 45.8s
|
Server Copilot E2E Test (3, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Server Copilot E2E Test (3, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Slow Test:
tests/affine-cloud/e2e/workspace.spec.ts#L1
tests/affine-cloud/e2e/workspace.spec.ts took 43.7s
|
Slow Test:
tests/affine-cloud/e2e/storage.spec.ts#L1
tests/affine-cloud/e2e/storage.spec.ts took 38.2s
|
Slow Test:
tests/affine-cloud/e2e/template.spec.ts#L1
tests/affine-cloud/e2e/template.spec.ts took 15.9s
|
Slow Test:
tests/affine-cloud/e2e/collaboration.spec.ts#L1
tests/affine-cloud/e2e/collaboration.spec.ts took 1.5m
|
Slow Test:
tests/affine-cloud/e2e/login.spec.ts#L1
tests/affine-cloud/e2e/login.spec.ts took 1.1m
|
Analyze (typescript)
1 issue was detected with this workflow: CodeQL language 'javascript' is referenced by more than one entry in the 'language' matrix parameter for job 'analyze'. This may result in duplicate alerts. Please edit the 'language' matrix parameter to keep only one of the following: 'javascript', 'typescript'.
|
Analyze (typescript)
Unable to validate code scanning workflow: DuplicateLanguageInMatrix
|
Server Copilot E2E Test (1, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Server Copilot E2E Test (1, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Slow Test:
tests/affine-local/e2e/local-first-avatar.spec.ts#L1
tests/affine-local/e2e/local-first-avatar.spec.ts took 24.1s
|
Server Copilot E2E Test (2, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Server Copilot E2E Test (2, 3)
Unexpected input(s) 'perplexity-key', valid inputs are ['script', 'openai-key', 'fal-key']
|
Analyze (javascript)
1 issue was detected with this workflow: CodeQL language 'javascript' is referenced by more than one entry in the 'language' matrix parameter for job 'analyze'. This may result in duplicate alerts. Please edit the 'language' matrix parameter to keep only one of the following: 'javascript', 'typescript'.
|
Analyze (javascript)
Unable to validate code scanning workflow: DuplicateLanguageInMatrix
|
Slow Test:
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts#L1
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts took 16.5s
|
test-build-mobile-app / ios
swiftformat 0.55.4 is already installed and up-to-date.
To reinstall 0.55.4, run:
brew reinstall swiftformat
|
Slow Test:
tests/affine-cloud/e2e/share-page.spec.ts#L1
tests/affine-cloud/e2e/share-page.spec.ts took 3.3m
|
Slow Test:
tests/affine-cloud/e2e/page-history.spec.ts#L1
tests/affine-cloud/e2e/page-history.spec.ts took 1.1m
|
Slow Test:
tests/affine-cloud/e2e/open-in-app.spec.ts#L1
tests/affine-cloud/e2e/open-in-app.spec.ts took 43.8s
|
🎭 Playwright Run Summary
7 passed (1.5m)
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
8 passed (2.0m)
|
🎭 Playwright Run Summary
2 flaky
[Mobile Safari] › e2e/home.spec.ts:44:1 › all tab ──────────────────────────────────────────────
[Mobile Safari] › e2e/settings.spec.ts:10:1 › can open settings ────────────────────────────────
5 passed (2.1m)
|
🎭 Playwright Run Summary
1 skipped
96 passed (1.6m)
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
2 skipped
95 passed (1.5m)
|
🎭 Playwright Run Summary
6 skipped
91 passed (2.2m)
|
🎭 Playwright Run Summary
12 skipped
85 passed (2.0m)
|
🎭 Playwright Run Summary
4 flaky
e2e/attachment.spec.ts:153:1 › should undo/redo works for attachment ───────────────────────────
e2e/attachment.spec.ts:264:1 › support dragging attachment block directly ──────────────────────
e2e/attachment.spec.ts:380:1 › indent attachment block to paragraph ────────────────────────────
e2e/clipboard/list.spec.ts:308:1 › paste non-nested lists to a nested list ─────────────────────
2 skipped
91 passed (1.5m)
|
🎭 Playwright Run Summary
4 skipped
93 passed (2.2m)
|
🎭 Playwright Run Summary
1 flaky
e2e/slash-menu.spec.ts:365:3 › slash menu should show and hide correctly › should open and close menu when using left right arrow, Enter, Esc keys
3 skipped
92 passed (1.5m)
|
🎭 Playwright Run Summary
96 passed (1.5m)
|
🎭 Playwright Run Summary
1 skipped
96 passed (2.6m)
|
🎭 Playwright Run Summary
4 skipped
93 passed (1.6m)
|
🎭 Playwright Run Summary
1 passed (1.2m)
|
🎭 Playwright Run Summary
7 skipped
9 passed (3.4m)
|
🎭 Playwright Run Summary
4 passed (2.1m)
|
🎭 Playwright Run Summary
2 skipped
6 passed (3.1m)
|
🎭 Playwright Run Summary
2 flaky
e2e/page-properties.spec.ts:236:1 › edit property name ─────────────────────────────────────────
e2e/page-properties.spec.ts:262:1 › delete property via property popup ─────────────────────────
1 skipped
47 passed (6.0m)
|
🎭 Playwright Run Summary
17 passed (4.6m)
|
🎭 Playwright Run Summary
2 flaky
e2e/links.spec.ts:279:1 › allow switching to embed view when linking to the other document with mode
e2e/links.spec.ts:583:1 › should show edgeless content when switching card view of linked mode doc in edgeless
48 passed (6.5m)
|
🎭 Playwright Run Summary
2 flaky
e2e/links.spec.ts:812:3 › Customize linked doc title and description › should automatically switch to card view and set a custom title and description
e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document
3 skipped
45 passed (6.7m)
|
🎭 Playwright Run Summary
17 passed (5.0m)
|
🎭 Playwright Run Summary
2 flaky
e2e/blocksuite/outline/outline-panel.spec.ts:108:3 › TOC display › should not display headings when there are only empty headings
e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings
48 passed (7.3m)
|
🎭 Playwright Run Summary
1 skipped
49 passed (6.2m)
|
🎭 Playwright Run Summary
12 passed (5.6m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
affine.darwin-arm64.node
|
1.91 MB |
|
affine.darwin-x64.node
|
2.03 MB |
|
affine.linux-x64-gnu.node
|
2.06 MB |
|
affine.win32-x64-msvc.node
|
2.43 MB |
|
android
|
61.9 MB |
|
ios
|
61.9 MB |
|
server-native.node
|
4.33 MB |
|
test-results-e2e-2
|
13.3 MB |
|
test-results-e2e-3
|
18.9 MB |
|
test-results-e2e-4
|
12.4 MB |
|
test-results-e2e-5
|
13.8 MB |
|
test-results-e2e-legacy-bs-1
|
12.5 MB |
|
test-results-e2e-legacy-bs-10
|
3.39 MB |
|
test-results-e2e-macos-latest-arm64
|
9.61 MB |
|
test-results-e2e-mobile-3
|
9.21 MB |
|
test-results-e2e-server-desktop
|
1.28 MB |
|
test-results-e2e-ubuntu-latest-x64
|
9.43 MB |
|
test-results-e2e-windows-latest-x64
|
11.1 MB |
|
web
|
63.5 MB |
|