Merge branch 'toeverything:canary' into canary #622
build-test.yml
on: push
Matrix: build-native
Build Server native
1m 39s
Matrix: Analyze
Matrix: E2E Mobile Test
Matrix: E2E Test
Build @affine/web
4m 39s
Lint
5m 21s
Check yarn binary
6s
E2E Migration Test
4m 11s
Matrix: server-e2e-test
Matrix: desktop-test
3, 2, 1 Launch
0s
Annotations
15 errors, 19 warnings, and 15 notices
[Mobile Safari] › detail.spec.ts:12:5 › can open page view more menu:
tests/affine-mobile/e2e/detail.spec.ts#L1
1) [Mobile Safari] › detail.spec.ts:12:5 › can open page view more menu ──────────────────────────
Test timeout of 60000ms exceeded.
|
[Mobile Safari] › detail.spec.ts:12:5 › can open page view more menu:
tests/affine-mobile/e2e/detail.spec.ts#L13
1) [Mobile Safari] › detail.spec.ts:12:5 › can open page view more menu ──────────────────────────
Error: page.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for locator('[data-testid="detail-page-header-more-button"]')
- locator resolved to <button data-size="custom" data-icon-size="24" data-variant="custom" data-icon-variant="plain" data-testid="detail-page-header-more-button" class="button_button__4mphx6e button_iconButton__4mphx6h page-header-more-button_iconButton__m2qhsa0">…</button>
- attempting click action
- waiting for element to be visible, enabled and stable
11 |
12 | test('can open page view more menu', async ({ page }) => {
> 13 | await page.click('[data-testid="detail-page-header-more-button"]');
| ^
14 | await expect(page.getByRole('dialog')).toBeVisible();
15 | });
16 |
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/detail.spec.ts:13:14
|
[Mobile Safari] › detail.spec.ts:17:5 › switch to page mode:
tests/affine-mobile/e2e/detail.spec.ts#L1
2) [Mobile Safari] › detail.spec.ts:17:5 › switch to page mode ───────────────────────────────────
Test timeout of 60000ms exceeded.
|
[Mobile Safari] › detail.spec.ts:17:5 › switch to page mode:
tests/affine-mobile/e2e/detail.spec.ts#L18
2) [Mobile Safari] › detail.spec.ts:17:5 › switch to page mode ───────────────────────────────────
Error: page.click: Test timeout of 60000ms exceeded.
Call log:
- waiting for locator('[data-testid="detail-page-header-more-button"]')
- locator resolved to <button data-size="custom" data-icon-size="24" data-variant="custom" data-icon-variant="plain" data-testid="detail-page-header-more-button" class="button_button__4mphx6e button_iconButton__4mphx6h page-header-more-button_iconButton__m2qhsa0">…</button>
- attempting click action
- waiting for element to be visible, enabled and stable
16 |
17 | test('switch to page mode', async ({ page }) => {
> 18 | await page.click('[data-testid="detail-page-header-more-button"]');
| ^
19 | await expect(page.getByRole('dialog')).toBeVisible();
20 |
21 | await page.getByRole('menuitem', { name: 'convert to page' }).click();
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-mobile/e2e/detail.spec.ts:18:14
|
local-first-workspace-list.spec.ts:31:5 › create one workspace in the workspace list:
tests/affine-local/e2e/local-first-workspace-list.spec.ts#L1
1) local-first-workspace-list.spec.ts:31:5 › create one workspace in the workspace list ──────────
Test timeout of 50000ms exceeded.
|
local-first-workspace-list.spec.ts:31:5 › create one workspace in the workspace list:
tests/affine-local/e2e/local-first-workspace-list.spec.ts#L54
1) local-first-workspace-list.spec.ts:31:5 › create one workspace in the workspace list ──────────
Error: page.reload: Test timeout of 50000ms exceeded.
Call log:
- waiting for navigation until "load"
- navigated to "http://localhost:8080/workspace/SBW8n1aWLyPsPfEoCNsGT/all"
52 | const result = await getPagesCount(page);
53 | expect(result).toBe(1);
> 54 | await page.reload();
| ^
55 | await page.waitForTimeout(4000);
56 | const result1 = await getPagesCount(page);
57 | expect(result1).toBe(1);
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/local-first-workspace-list.spec.ts:54:14
|
quick-search.spec.ts:168:5 › Create a new page and search this page:
tests/affine-local/e2e/quick-search.spec.ts#L1
1) quick-search.spec.ts:168:5 › Create a new page and search this page ───────────────────────────
Test timeout of 50000ms exceeded.
|
quick-search.spec.ts:168:5 › Create a new page and search this page:
tests/affine-local/e2e/quick-search.spec.ts#L189
1) quick-search.spec.ts:168:5 › Create a new page and search this page ───────────────────────────
Error: page.reload: Test timeout of 50000ms exceeded.
Call log:
- waiting for navigation until "load"
- navigated to "http://localhost:8080/workspace/CdT6OumZdAmAbxs7D5v9I/8kHqWeXJkBiuqV0z0LzET"
187 | await assertTitle(page, 'test123456');
188 |
> 189 | await page.reload();
| ^
190 | await waitForEditorLoad(page);
191 | await openQuickSearchByShortcut(page);
192 | await insertInputText(page, 'test123456');
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/quick-search.spec.ts:189:14
|
quick-search.spec.ts:548:5 › can use slash menu to insert a newly created doc card:
tests/affine-local/e2e/quick-search.spec.ts#L564
2) quick-search.spec.ts:548:5 › can use slash menu to insert a newly created doc card ────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByTestId('cmdk-quick-search')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByTestId('cmdk-quick-search')
562 | });
563 | await page.keyboard.press('Enter');
> 564 | await expect(page.getByTestId('cmdk-quick-search')).toBeVisible();
| ^
565 |
566 | const testTitle = 'test title';
567 | await page.locator('[cmdk-input]').fill(testTitle);
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/quick-search.spec.ts:564:55
|
local-first-avatar.spec.ts:11:5 › should create a page with a local first avatar and remove it:
tests/affine-local/e2e/local-first-avatar.spec.ts#L1
1) local-first-avatar.spec.ts:11:5 › should create a page with a local first avatar and remove it
Test timeout of 50000ms exceeded.
|
local-first-avatar.spec.ts:11:5 › should create a page with a local first avatar and remove it:
tests/affine-local/e2e/local-first-avatar.spec.ts#L59
1) local-first-avatar.spec.ts:11:5 › should create a page with a local first avatar and remove it
Error: page.waitForTimeout: Test timeout of 50000ms exceeded.
57 | await page.getByTestId('workspace-setting-remove-avatar-button').click();
58 | await page.mouse.click(0, 0);
> 59 | await page.waitForTimeout(1000);
| ^
60 | await page.getByTestId('workspace-name').click();
61 | await page.getByTestId('workspace-card').nth(1).click();
62 | const removedAvatarImage = await page
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/local-first-avatar.spec.ts:59:14
|
local-first-collections-items.spec.ts:67:5 › Show collections items in sidebar:
tests/affine-local/e2e/local-first-collections-items.spec.ts#L1
2) local-first-collections-items.spec.ts:67:5 › Show collections items in sidebar ────────────────
Test timeout of 50000ms exceeded.
|
local-first-collections-items.spec.ts:67:5 › Show collections items in sidebar:
tests/affine-local/e2e/local-first-collections-items.spec.ts#L61
2) local-first-collections-items.spec.ts:67:5 › Show collections items in sidebar ────────────────
Error: expect(locator).toBeVisible()
Locator: getByTestId('input-collection-title')
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByTestId('input-collection-title')
59 | });
60 | const title = page.getByTestId('input-collection-title');
> 61 | await expect(title).toBeVisible();
| ^
62 | await title.fill(options?.collectionName ?? 'test collection');
63 | await page.getByTestId('save-collection').click();
64 | await page.waitForTimeout(100);
at createAndPinCollection (/home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/local-first-collections-items.spec.ts:61:23)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-local/e2e/local-first-collections-items.spec.ts:94:3
|
basic.spec.ts:28:5 › new page:
tests/affine-desktop-cloud/e2e/basic.spec.ts#L1
1) basic.spec.ts:28:5 › new page ─────────────────────────────────────────────────────────────────
Test timeout of 50000ms exceeded.
|
basic.spec.ts:28:5 › new page:
tests/kit/utils/page-logic.ts#L5
1) basic.spec.ts:28:5 › new page ─────────────────────────────────────────────────────────────────
Error: page.waitForSelector: Target page, context or browser has been closed
Call log:
- waiting for locator('v-line') to be visible
at ../../kit/utils/page-logic.ts:5
3 |
4 | export async function waitForEditorLoad(page: Page) {
> 5 | await page.waitForSelector('v-line', {
| ^
6 | timeout: 20000,
7 | });
8 | }
at waitForEditorLoad (/home/runner/work/AFFiNE/AFFiNE/tests/kit/utils/page-logic.ts:5:14)
at /home/runner/work/AFFiNE/AFFiNE/tests/affine-desktop-cloud/e2e/basic.spec.ts:30:26
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › detail.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › detail.spec.ts took 58.3s
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › home.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › home.spec.ts took 49.6s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › home.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › home.spec.ts took 55.2s
|
Slow Test:
tests/affine-mobile/[Mobile Chrome] › detail.spec.ts#L1
tests/affine-mobile/[Mobile Chrome] › detail.spec.ts took 47.4s
|
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 (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'.
|
Slow Test:
tests/affine-migration/basic.spec.ts#L1
tests/affine-migration/basic.spec.ts took 1.3m
|
Slow Test:
tests/affine-mobile/[Mobile Safari] › home.spec.ts#L1
tests/affine-mobile/[Mobile Safari] › home.spec.ts took 20.6s
|
Unit Test
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
Slow Test:
tests/affine-local/ai-land.spec.ts#L1
tests/affine-local/ai-land.spec.ts took 43.9s
|
Slow Test:
tests/affine-local/open-affine.spec.ts#L1
tests/affine-local/open-affine.spec.ts took 30.4s
|
Slow Test:
tests/affine-local/router.spec.ts#L1
tests/affine-local/router.spec.ts took 24.4s
|
Slow Test:
tests/affine-local/local-first-show-delete-modal.spec.ts#L1
tests/affine-local/local-first-show-delete-modal.spec.ts took 21.8s
|
Slow Test:
tests/affine-cloud/page-history.spec.ts#L1
tests/affine-cloud/page-history.spec.ts took 1.5m
|
Server Test
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
Slow Test:
tests/affine-cloud/share-page.spec.ts#L1
tests/affine-cloud/share-page.spec.ts took 2.4m
|
Slow Test:
tests/affine-cloud/workspace.spec.ts#L1
tests/affine-cloud/workspace.spec.ts took 1.0m
|
Slow Test:
tests/affine-cloud/collaboration.spec.ts#L1
tests/affine-cloud/collaboration.spec.ts took 3.0m
|
Slow Test:
tests/affine-cloud/login.spec.ts#L1
tests/affine-cloud/login.spec.ts took 1.8m
|
🎭 Playwright Run Summary
3 passed (1.1m)
|
🎭 Playwright Run Summary
3 passed (1.1m)
|
🎭 Playwright Run Summary
3 passed (1.3m)
|
🎭 Playwright Run Summary
3 passed (1.1m)
|
🎭 Playwright Run Summary
4 passed (1.5m)
|
🎭 Playwright Run Summary
2 flaky
[Mobile Safari] › detail.spec.ts:12:5 › can open page view more menu ───────────────────────────
[Mobile Safari] › detail.spec.ts:17:5 › switch to page mode ────────────────────────────────────
2 passed (2.3m)
|
🎭 Playwright Run Summary
31 passed (3.6m)
|
🎭 Playwright Run Summary
1 flaky
local-first-workspace-list.spec.ts:31:5 › create one workspace in the workspace list ───────────
2 skipped
27 passed (3.8m)
|
🎭 Playwright Run Summary
31 passed (3.8m)
|
🎭 Playwright Run Summary
2 flaky
quick-search.spec.ts:168:5 › Create a new page and search this page ────────────────────────────
quick-search.spec.ts:548:5 › can use slash menu to insert a newly created doc card ─────────────
28 passed (4.0m)
|
🎭 Playwright Run Summary
2 flaky
local-first-avatar.spec.ts:11:5 › should create a page with a local first avatar and remove it ─
local-first-collections-items.spec.ts:67:5 › Show collections items in sidebar ─────────────────
3 skipped
25 passed (4.5m)
|
🎭 Playwright Run Summary
1 skipped
2 passed (1.9m)
|
🎭 Playwright Run Summary
1 flaky
basic.spec.ts:28:5 › new page ──────────────────────────────────────────────────────────────────
|
🎭 Playwright Run Summary
5 passed (3.9m)
|
🎭 Playwright Run Summary
1 skipped
7 passed (5.3m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
affine.darwin-arm64.node
|
1.48 MB |
|
affine.darwin-x64.node
|
1.57 MB |
|
affine.linux-x64-gnu.node
|
1.61 MB |
|
affine.win32-x64-msvc.node
|
1.68 MB |
|
server-native.node
|
4.22 MB |
|
web
|
58.7 MB |
|