perf(core): only full sync before exporting #26522
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 19s
Lint Rust
39s
Check yarn binary
9s
Run native tests
2m 0s
Matrix: Server Copilot E2E Test
Matrix: Server Test
Matrix: Unit Test
Matrix: server-e2e-test
Matrix: desktop-test
3, 2, 1 Launch
0s
Annotations
28 errors, 24 warnings, and 24 notices
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:346:1 › cancel file picker with input element resolves:
blocksuite/tests-legacy/e2e/attachment.spec.ts#L366
2) e2e/attachment.spec.ts:346:1 › cancel file picker with input element resolves ─────────────────
TimeoutError: page.waitForEvent: Timeout 5000ms exceeded while waiting for event "filechooser"
=========================== logs ===========================
waiting for event "filechooser"
============================================================
364 | await expect(slashMenu).toBeVisible();
365 |
> 366 | const fileChooser = page.waitForEvent('filechooser');
| ^
367 | await pressEnter(page);
368 | const inputFile = page.locator("input[type='file']");
369 | await expect(inputFile).toHaveCount(1);
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/attachment.spec.ts:366:28
|
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
|
e2e/selection/native.spec.ts:266:1 › cursor move to up and down with children block:
blocksuite/tests-legacy/e2e/selection/native.spec.ts#L295
1) e2e/selection/native.spec.ts:266:1 › cursor move to up and down with children block ───────────
Error: expect(received).toBeGreaterThanOrEqual(expected)
Expected: >= 12
Received: -1
293 | const textTwo = await getInlineSelectionText(page);
294 | expect(textTwo).toBe('arrow down test 1');
> 295 | expect(indexTwo).toBeGreaterThanOrEqual(12);
| ^
296 | expect(indexTwo).toBeLessThanOrEqual(17);
297 | await page.keyboard.press('ArrowDown');
298 | const textThree = await getInlineSelectionText(page);
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/selection/native.spec.ts:295:20
|
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
2) 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/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/hotkey/multiline.spec.ts:100:1 › should cut work multiple line:
blocksuite/tests-legacy/e2e/hotkey/multiline.spec.ts#L110
2) e2e/hotkey/multiline.spec.ts:100:1 › should cut work multiple line ────────────────────────────
Error: expect(string).toMatchSnapshot(expected)
@@ -44,17 +44,55 @@
"type": "text",
"text": {
"$blocksuite:internal:text$": true,
"delta": [
{
- "insert": "19"
+ "insert": "123"
}
]
},
"collapsed": false
},
"children": []
+ },
+ {
+ "type": "block",
+ "id": "3",
+ "flavour": "affine:paragraph",
+ "version": 1,
+ "props": {
+ "type": "text",
+ "text": {
+ "$blocksuite:internal:text$": true,
+ "delta": [
+ {
+ "insert": "456"
+ }
+ ]
+ },
+ "collapsed": false
+ },
+ "children": []
+ },
+ {
+ "type": "block",
+ "id": "4",
+ "flavour": "affine:paragraph",
+ "version": 1,
+ "props": {
+ "type": "text",
+ "text": {
+ "$blocksuite:internal:text$": true,
+ "delta": [
+ {
+ "insert": "789"
+ }
+ ]
+ },
+ "collapsed": false
+ },
+ "children": []
}
]
}
]
}
Expected: /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/snapshots/hotkey/multiline.spec.ts/should-cut-work-multiple-line-init.json
Received: /home/runner/work/AFFiNE/AFFiNE/test-results/hotkey-multiline-should-cut-work-multiple-line/should-cut-work-multiple-line-init-actual.json
108 | // cut
109 | await page.keyboard.press(`${SHORT_KEY}+x`);
> 110 | expect(await getPageSnapshot(page, true)).toMatchSnapshot(
| ^
111 | `${testInfo.title}_init.json`
112 | );
113 | await undoByKeyboard(page);
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/hotkey/multiline.spec.ts:110:45
|
e2e/edgeless/shortcut.spec.ts:121:1 › should not switch shapes in editing:
blocksuite/tests-legacy/e2e/utils/actions/edgeless.ts#L368
1) e2e/edgeless/shortcut.spec.ts:121:1 › should not switch shapes in editing ─────────────────────
TimeoutError: locator.click: Timeout 5000ms exceeded.
Call log:
- waiting for locator('edgeless-slide-menu edgeless-tool-icon-button').filter({ hasText: 'Square' })
- locator resolved to <edgeless-tool-icon-button role="button">…</edgeless-tool-icon-button>
- attempting click action
- waiting for element to be visible, enabled and stable
- element was detached from the DOM, retrying
at utils/actions/edgeless.ts:368
366 | .locator('edgeless-slide-menu edgeless-tool-icon-button')
367 | .filter({ hasText: shape });
> 368 | await squareShapeButton.click();
| ^
369 | break;
370 | }
371 | }
at setEdgelessTool (/home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/utils/actions/edgeless.ts:368:31)
at /home/runner/work/AFFiNE/AFFiNE/blocksuite/tests-legacy/e2e/edgeless/shortcut.spec.ts:139: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:25:1 › switch to page mode:
tests/affine-mobile/e2e/detail.spec.ts#L14
2) [Mobile Safari] › e2e/detail.spec.ts:25:1 › switch to page mode ───────────────────────────────
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/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: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#L859
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('affine-embed-synced-doc-block')
- locator resolved to <affine-embed-synced-doc-block data-page-mode="" data-nested-editor="" contenteditable="false" data-block-id="DzlXOCDMtZ" data-drop-target-for-element="true">…</affine-embed-synced-doc-block>
- attempting click action
- waiting for element to be visible, enabled and stable
857 |
858 | // refocus the page
> 859 | await embedLink.click();
| ^
860 |
861 | await embedLink.click();
862 |
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:859:21
|
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/kit/src/utils/page-logic.ts#L37
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
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
TimeoutError: locator.click: Timeout 5000ms exceeded.
Call log:
- waiting for getByTestId('sidebar-new-page-button')
- locator resolved to <button data-size="custom" data-icon-size="20" data-mobile="false" data-state="closed" data-variant="custom" data-icon-variant="plain" data-testid="sidebar-new-page-button" class="button_button__ph3zqme button_iconButton__ph3zqmh add-page-button_root__18n7nrk0">…</button>
- 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
at ../../kit/src/utils/page-logic.ts:37
35 | export async function clickNewPageButton(page: Page, title?: string) {
36 | // fixme(himself65): if too fast, the page will crash
> 37 | await page.getByTestId('sidebar-new-page-button').click({
| ^
38 | delay: 100,
39 | });
40 | await waitForEmptyEditor(page);
at clickNewPageButton (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:37:53)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:25:9
|
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#L55
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: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 createLinkedPage (/home/runner/work/AFFiNE/AFFiNE/tests/kit/src/utils/page-logic.ts:64:9)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/links.spec.ts:963:5
|
e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection:
tests/affine-local/e2e/drag-page.spec.ts#L80
1) e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection ───────────────────────
Test timeout of 50000ms exceeded while running "beforeEach" hook.
78 | };
79 |
> 80 | test.beforeEach(async ({ page }) => {
| ^
81 | await openHomePage(page);
82 | await waitForEditorLoad(page);
83 | });
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/drag-page.spec.ts:80:6
|
e2e/drag-page.spec.ts:154:1 › drag a collection to favourites:
tests/affine-local/e2e/drag-page.spec.ts#L1
2) e2e/drag-page.spec.ts:154:1 › drag a collection to favourites ─────────────────────────────────
Test timeout of 50000ms exceeded.
|
e2e/drag-page.spec.ts:154:1 › drag a collection to favourites:
tests/affine-local/e2e/drag-page.spec.ts#L156
2) e2e/drag-page.spec.ts:154:1 › drag a collection to favourites ─────────────────────────────────
Error: page.waitForTimeout: Test timeout of 50000ms exceeded.
154 | test('drag a collection to favourites', async ({ page }) => {
155 | await clickSideBarAllPageButton(page);
> 156 | await page.waitForTimeout(500);
| ^
157 | const collection = await createCollection(page, 'test collection');
158 | const collectionId = getCurrentCollectionIdFromUrl(page);
159 | await dragToFavourites(page, collection, collectionId, 'collection');
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/drag-page.spec.ts:156:14
|
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
3) 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
4) 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/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:108:3 › TOC display › should not display headings when there are only empty headings:
tests/affine-local/e2e/blocksuite/outline/outline-panel.spec.ts#L123
1) e2e/blocksuite/outline/outline-panel.spec.ts:108:3 › TOC display › should not display headings when there are only empty headings
Error: expect(locator).toBeHidden()
Locator: locator('affine-outline-panel').getByTestId('outline-block-preview-h2').locator('span')
Expected: hidden
Received: undefined
Call log:
- expect.toBeHidden with timeout 5000ms
- waiting for locator('affine-outline-panel').getByTestId('outline-block-preview-h2').locator('span')
121 | await expect(toc.getByTestId('outline-block-preview-title')).toBeHidden();
122 | for (let i = 1; i <= 6; i++) {
> 123 | await expect(getTocHeading(toc, i)).toBeHidden();
| ^
124 | }
125 | });
126 |
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/blocksuite/outline/outline-panel.spec.ts:123:43
|
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/detail.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/detail.spec.ts took 53.9s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-favorite.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/explorer-favorite.spec.ts took 49.7s
|
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.9s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › e2e/settings.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › e2e/settings.spec.ts took 16.8s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/explorer-folder.spec.ts took 52.0s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/home.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/home.spec.ts took 57.9s
|
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 16.3s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › e2e/explorer-favorite.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › e2e/explorer-favorite.spec.ts took 41.7s
|
Slow Test:
tests/affine-desktop-cloud/e2e/basic.spec.ts#L1
tests/affine-desktop-cloud/e2e/basic.spec.ts took 45.0s
|
Slow Test:
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts#L1
tests/affine-local/e2e/blocksuite/embed/synced.spec.ts took 16.4s
|
Slow Test:
tests/affine-cloud/e2e/workspace.spec.ts#L1
tests/affine-cloud/e2e/workspace.spec.ts took 43.5s
|
Slow Test:
tests/affine-cloud/e2e/storage.spec.ts#L1
tests/affine-cloud/e2e/storage.spec.ts took 38.1s
|
Slow Test:
tests/affine-cloud/e2e/template.spec.ts#L1
tests/affine-cloud/e2e/template.spec.ts took 16.9s
|
Slow Test:
tests/affine-local/e2e/local-first-avatar.spec.ts#L1
tests/affine-local/e2e/local-first-avatar.spec.ts took 21.6s
|
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 (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
|
Slow Test:
tests/affine-cloud/e2e/open-in-app.spec.ts#L1
tests/affine-cloud/e2e/open-in-app.spec.ts took 44.1s
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
7 passed (1.6m)
|
🎭 Playwright Run Summary
4 skipped
93 passed (1.5m)
|
🎭 Playwright Run Summary
7 passed (1.8m)
|
🎭 Playwright Run Summary
4 flaky
e2e/attachment.spec.ts:153:1 › should undo/redo works for attachment ───────────────────────────
e2e/attachment.spec.ts:346:1 › cancel file picker with input element resolves ──────────────────
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.5m)
|
🎭 Playwright Run Summary
2 flaky
e2e/selection/native.spec.ts:266:1 › cursor move to up and down with children block ────────────
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
91 passed (1.4m)
|
🎭 Playwright Run Summary
96 passed (1.4m)
|
🎭 Playwright Run Summary
2 flaky
e2e/hotkey/hotkey.spec.ts:437:3 › keyboard operation to move block up or down › keep cursor ────
e2e/hotkey/multiline.spec.ts:100:1 › should cut work multiple line ─────────────────────────────
1 skipped
94 passed (1.6m)
|
🎭 Playwright Run Summary
2 skipped
95 passed (1.5m)
|
🎭 Playwright Run Summary
1 flaky
e2e/edgeless/shortcut.spec.ts:121:1 › should not switch shapes in editing ──────────────────────
4 skipped
92 passed (2.3m)
|
🎭 Playwright Run Summary
6 skipped
91 passed (2.2m)
|
🎭 Playwright Run Summary
12 skipped
85 passed (2.1m)
|
🎭 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:25:1 › switch to page mode ────────────────────────────────
6 passed (2.9m)
|
🎭 Playwright Run Summary
1 skipped
96 passed (2.7m)
|
🎭 Playwright Run Summary
1 passed (1.2m)
|
🎭 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.1m)
|
🎭 Playwright Run Summary
1 skipped
49 passed (6.1m)
|
🎭 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.5m)
|
🎭 Playwright Run Summary
4 flaky
e2e/drag-page.spec.ts:135:1 › drag a page from favourites to collection ────────────────────────
e2e/drag-page.spec.ts:154:1 › drag a collection to favourites ──────────────────────────────────
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
46 passed (6.8m)
|
🎭 Playwright Run Summary
2 skipped
6 passed (3.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
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
|
12.9 MB |
|
test-results-e2e-3
|
28.3 MB |
|
test-results-e2e-4
|
19.9 MB |
|
test-results-e2e-5
|
13.2 MB |
|
test-results-e2e-legacy-bs-1
|
12.1 MB |
|
test-results-e2e-legacy-bs-10
|
6.58 MB |
|
test-results-e2e-legacy-bs-6
|
7.88 MB |
|
test-results-e2e-legacy-bs-7
|
6.05 MB |
|
test-results-e2e-macos-latest-arm64
|
9.03 MB |
|
test-results-e2e-mobile-1
|
9.5 MB |
|
test-results-e2e-server-desktop
|
1.34 MB |
|
test-results-e2e-ubuntu-latest-x64
|
10.2 MB |
|
test-results-e2e-windows-latest-x64
|
9.98 MB |
|
web
|
63.5 MB |
|