fix(editor): table block supports parsing rich text #26705
build-test.yml
on: pull_request
Optimize CI
6s
Matrix: build-native
Matrix: Analyze
Matrix: Legacy Blocksuite E2E Test
Matrix: E2E Mobile Test
Matrix: E2E Test
Lint
6m 1s
Lint Rust
34s
Check yarn binary
6s
Run native tests
2m 4s
Matrix: Server Copilot E2E Test
Matrix: Server Test
Matrix: Unit Test
Matrix: server-e2e-test
Matrix: desktop-test
3, 2, 1 Launch
0s
Annotations
22 errors, 21 warnings, and 24 notices
[Mobile Safari] › e2e/home.spec.ts:10:1 › app tabs is visible:
tests/affine-mobile/e2e/home.spec.ts#L12
1) [Mobile Safari] › e2e/home.spec.ts:10:1 › app tabs is visible ─────────────────────────────────
Error: Timed out 15000ms waiting for expect(locator).toBeVisible()
Locator: locator('#app-tabs')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 15000ms
- waiting for locator('#app-tabs')
10 | test('app tabs is visible', async ({ page }) => {
11 | const tabs = page.locator('#app-tabs');
> 12 | await expect(tabs).toBeVisible();
| ^
13 |
14 | await expect(tabs.getByRole('tab', { name: 'home' })).toBeVisible();
15 | await expect(tabs.getByRole('tab', { name: 'all' })).toBeVisible();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/home.spec.ts:12:22
|
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/attachment.spec.ts:225:1 › should turn attachment to image works:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L74
1) e2e/attachment.spec.ts:225:1 › should turn attachment to image works ──────────────────────────
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:232:3
|
e2e/attachment.spec.ts:247:1 › should attachment can be deleted:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L74
2) e2e/attachment.spec.ts:247:1 › should attachment can be deleted ───────────────────────────────
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:253:3
|
e2e/clipboard/list.spec.ts:215:1 › paste nested lists to a nested list:
blocksuite/tests-legacy/e2e/utils/asserts.ts#L205
3) e2e/clipboard/list.spec.ts:215:1 › paste nested lists to a nested list ────────────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 2
+ Received + 2
Array [
"aaa",
- "111",
+ "bbb111",
"222",
"111",
- "222bbb",
+ "222",
"ccc",
]
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:257: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
|
[Mobile Safari] › e2e/back-button-visibility.spec.ts:8:1 › new doc via app tab should not show back:
tests/affine-mobile/e2e/back-button-visibility.spec.ts#L1
1) [Mobile Safari] › e2e/back-button-visibility.spec.ts:8:1 › new doc via app tab should not show back
Test timeout of 60000ms exceeded.
|
[Mobile Safari] › e2e/back-button-visibility.spec.ts:8:1 › new doc via app tab should not show back:
tests/affine-mobile/e2e/utils.ts#L50
1) [Mobile Safari] › e2e/back-button-visibility.spec.ts:8:1 › new doc via app tab should not show back
Error: expect(locator).toBeVisible()
Locator: locator('#app-tabs').getByRole('tab', { name: 'New Page' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 15000ms
- waiting for locator('#app-tabs').getByRole('tab', { name: 'New Page' })
at utils.ts:50
48 | ) {
49 | const tab = page.locator('#app-tabs').getByRole('tab', { name });
> 50 | await expect(tab).toBeVisible();
| ^
51 | await tab.click();
52 | // eslint-disable-next-line unicorn/prefer-dom-node-dataset
53 | const isActive = await tab.getAttribute('data-active');
at openTab (/home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/utils.ts:50:21)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/back-button-visibility.spec.ts:10:9
|
[Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu:
tests/affine-mobile/e2e/detail.spec.ts#L12
2) [Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu ──────────────────────
Test timeout of 60000ms exceeded while running "beforeEach" hook.
10 | };
11 |
> 12 | test.beforeEach(async ({ page }) => {
| ^
13 | const docsTab = page.locator('#app-tabs').getByRole('tab', { name: 'all' });
14 | await expect(docsTab).toBeVisible();
15 | await docsTab.click();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/detail.spec.ts:12:6
|
[Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu:
tests/affine-mobile/e2e/detail.spec.ts#L14
2) [Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu ──────────────────────
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' })
12 | test.beforeEach(async ({ page }) => {
13 | const docsTab = page.locator('#app-tabs').getByRole('tab', { name: 'all' });
> 14 | await expect(docsTab).toBeVisible();
| ^
15 | await docsTab.click();
16 | await page.getByTestId('doc-card').first().click();
17 | await expect(page.locator('.affine-edgeless-viewport')).toBeVisible();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/detail.spec.ts:14:25
|
[Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu:
tests/affine-mobile/e2e/detail.spec.ts#L14
2) [Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu ──────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 15000ms waiting for 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' })
12 | test.beforeEach(async ({ page }) => {
13 | const docsTab = page.locator('#app-tabs').getByRole('tab', { name: 'all' });
> 14 | await expect(docsTab).toBeVisible();
| ^
15 | await docsTab.click();
16 | await page.getByTestId('doc-card').first().click();
17 | await expect(page.locator('.affine-edgeless-viewport')).toBeVisible();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/detail.spec.ts:14:25
|
e2e/hotkey/hotkey.spec.ts:437:3 › keyboard operation to move block up or down › keep cursor:
blocksuite/tests-legacy/e2e/utils/asserts.ts#L326
1) e2e/hotkey/hotkey.spec.ts:437:3 › keyboard operation to move block up or down › keep cursor ───
Error: expect(received).toEqual(expected) // deep equality
Expected: {"index": 3, "length": 0}
Received: null
at utils/asserts.ts:326
324 | [richTextIndex]
325 | );
> 326 | expect(actual).toEqual({ index: rangeIndex, length: rangeLength });
| ^
327 | }
328 |
329 | export async function assertNativeSelectionRangeCount(
at assertRichTextInlineRange (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/utils/asserts.ts:326:18)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/hotkey/hotkey.spec.ts:453:5
|
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#L845
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: Target page, context or browser has been closed
843 |
844 | // Copies link
> 845 | await cardToolbar.getByRole('button', { name: 'Copy link' }).click();
| ^
846 | const url1 = await (
847 | await page.evaluateHandle(() => navigator.clipboard.readText())
848 | ).jsonValue();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:845:66
|
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#L61
2) e2e/links.spec.ts:954:3 › Customize linked doc title and description › should show emoji doc icon in normal document
Error: keyboard.type: Test timeout of 50000ms exceeded.
at ../../kit/src/utils/page-logic.ts:61
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();
64 | await type(page, pageName || 'Untitled');
at createLinkedPage (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:61:23)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:963:5
|
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
1) 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
1) 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
|
e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection:
tests/affine-local/e2e/drag-page.spec.ts#L1
1) e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection ───────────────────────
Test timeout of 50000ms exceeded.
|
e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection:
tests/affine-local/e2e/drag-page.spec.ts#L53
1) e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection ───────────────────────
Error: page.waitForTimeout: Test timeout of 50000ms exceeded.
51 | await clickSideBarAllPageButton(page);
52 | await dragTo(page, dragItem, collection);
> 53 | await page.waitForTimeout(500);
| ^
54 | const collectionPage = collection.locator('[data-testid^="explorer-doc-"]');
55 | await expect(collectionPage).toBeVisible();
56 | return collectionPage;
at dragToCollection (/home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/drag-page.spec.ts:53:14)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/drag-page.spec.ts:151:3
|
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
2) 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/open-in-app.spec.ts:33:1 › open in app card should be shown for cloud workspace:
tests/kit/src/utils/page-logic.ts#L23
1) e2e/open-in-app.spec.ts:33:1 › open in app card should be shown for cloud workspace ───────────
TimeoutError: page.waitForSelector: Timeout 20000ms exceeded.
Call log:
- waiting for locator('v-line') to be visible
at ../../kit/src/utils/page-logic.ts:23
21 |
22 | export async function waitForEditorLoad(page: Page) {
> 23 | await page.waitForSelector('v-line', {
| ^
24 | timeout: 20000,
25 | });
26 | }
at waitForEditorLoad (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:23:14)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-cloud/e2e/open-in-app.spec.ts:24:9
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/detail.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/detail.spec.ts took 53.3s
|
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.8s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/home.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/home.spec.ts took 49.0s
|
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 Chrome] › e2e/explorer-tag.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-tag.spec.ts took 50.6s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts took 53.0s
|
Slow Test:
tests/affine-desktop-cloud/e2e/basic.spec.ts#L1
tests/affine-desktop-cloud/e2e/basic.spec.ts took 44.4s
|
Slow Test:
tests/affine-cloud/e2e/workspace.spec.ts#L1
tests/affine-cloud/e2e/workspace.spec.ts took 42.9s
|
Slow Test:
tests/affine-cloud/e2e/storage.spec.ts#L1
tests/affine-cloud/e2e/storage.spec.ts took 37.1s
|
Slow Test:
tests/affine-cloud/e2e/template.spec.ts#L1
tests/affine-cloud/e2e/template.spec.ts took 17.7s
|
Slow Test:
tests/affine-local/e2e/local-first-avatar.spec.ts#L1
tests/affine-local/e2e/local-first-avatar.spec.ts took 23.1s
|
Slow Test:
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts#L1
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts took 16.6s
|
Slow Test:
tests/affine-cloud/e2e/collaboration.spec.ts#L1
tests/affine-cloud/e2e/collaboration.spec.ts took 1.4m
|
Slow Test:
tests/affine-cloud/e2e/login.spec.ts#L1
tests/affine-cloud/e2e/login.spec.ts took 1.1m
|
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
|
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
|
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
|
🎭 Playwright Run Summary
7 passed (1.5m)
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
7 passed (1.4m)
|
🎭 Playwright Run Summary
2 skipped
95 passed (1.5m)
|
🎭 Playwright Run Summary
1 flaky
[Mobile Safari] › e2e/home.spec.ts:10:1 › app tabs is visible ──────────────────────────────────
6 passed (2.1m)
|
🎭 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.3m)
|
🎭 Playwright Run Summary
4 flaky
e2e/attachment.spec.ts:225:1 › should turn attachment to image works ───────────────────────────
e2e/attachment.spec.ts:247:1 › should attachment can be deleted ────────────────────────────────
e2e/clipboard/list.spec.ts:215:1 › paste nested lists to a nested list ─────────────────────────
e2e/clipboard/list.spec.ts:308:1 › paste non-nested lists to a nested list ─────────────────────
2 skipped
91 passed (1.4m)
|
🎭 Playwright Run Summary
96 passed (1.4m)
|
🎭 Playwright Run Summary
4 skipped
93 passed (1.5m)
|
🎭 Playwright Run Summary
6 skipped
91 passed (2.2m)
|
🎭 Playwright Run Summary
2 flaky
[Mobile Safari] › e2e/back-button-visibility.spec.ts:8:1 › new doc via app tab should not show back
[Mobile Safari] › e2e/detail.spec.ts:20:1 › can open page view more menu ───────────────────────
6 passed (2.7m)
|
🎭 Playwright Run Summary
4 skipped
93 passed (2.2m)
|
🎭 Playwright Run Summary
1 skipped
96 passed (2.7m)
|
🎭 Playwright Run Summary
12 skipped
85 passed (2.1m)
|
🎭 Playwright Run Summary
1 flaky
e2e/hotkey/hotkey.spec.ts:437:3 › keyboard operation to move block up or down › keep cursor ────
1 skipped
95 passed (1.6m)
|
🎭 Playwright Run Summary
1 passed (1.2m)
|
🎭 Playwright Run Summary
4 passed (2.1m)
|
🎭 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.4m)
|
🎭 Playwright Run Summary
1 skipped
49 passed (6.1m)
|
🎭 Playwright Run Summary
1 skipped
49 passed (5.9m)
|
🎭 Playwright Run Summary
2 skipped
6 passed (3.0m)
|
🎭 Playwright Run Summary
1 flaky
e2e/blocksuite/outline/outline-panel.spec.ts:127:3 › TOC display › should update panel when modify or clear title or headings
49 passed (7.0m)
|
🎭 Playwright Run Summary
2 flaky
e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection ────────────────────────
e2e/links.spec.ts:279:1 › allow switching to embed view when linking to the other document with mode
48 passed (6.6m)
|
🎭 Playwright Run Summary
1 flaky
e2e/open-in-app.spec.ts:33:1 › open in app card should be shown for cloud workspace ────────────
11 passed (6.2m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
affine.darwin-arm64.node
|
1.97 MB |
|
affine.darwin-x64.node
|
2.1 MB |
|
affine.linux-x64-gnu.node
|
2.06 MB |
|
affine.win32-x64-msvc.node
|
2.42 MB |
|
android
|
61.9 MB |
|
ios
|
61.9 MB |
|
server-native.node
|
4.33 MB |
|
test-results-e2e-2
|
6 MB |
|
test-results-e2e-3
|
14.1 MB |
|
test-results-e2e-4
|
13.6 MB |
|
test-results-e2e-5
|
318 KB |
|
test-results-e2e-legacy-bs-1
|
12.6 MB |
|
test-results-e2e-legacy-bs-10
|
3.38 MB |
|
test-results-e2e-legacy-bs-7
|
2.98 MB |
|
test-results-e2e-macos-latest-arm64
|
8.89 MB |
|
test-results-e2e-mobile-1
|
14.3 MB |
|
test-results-e2e-mobile-2
|
2.45 MB |
|
test-results-e2e-server-2
|
11.4 MB |
|
test-results-e2e-server-desktop
|
1.26 MB |
|
test-results-e2e-ubuntu-latest-x64
|
9.97 MB |
|
test-results-e2e-windows-latest-x64
|
10.5 MB |
|
web
|
63.5 MB |
|