feat(blocks): microsheet-block init #7683
test.yml
on: pull_request
Install Dependencies
1m 11s
Build & Test
0s
Annotations
20 errors, 19 warnings, and 20 notices
Build:
packages/blocks/src/cell-block/cell-service.ts#L26
Cannot find name 'selectBlock'.
|
Build
Process completed with exit code 2.
|
attachment.spec.ts:670:1 › indent attachment block to paragraph:
tests/attachment.spec.ts#L69
1) attachment.spec.ts:670:1 › indent attachment block to paragraph ───────────────────────────────
TimeoutError: page.waitForEvent: Timeout 5000ms exceeded while waiting for event "filechooser"
=========================== logs ===========================
waiting for event "filechooser"
============================================================
67 | await expect(slashMenu).toBeVisible();
68 |
> 69 | const fileChooser = page.waitForEvent('filechooser');
| ^
70 | await pressEnter(page);
71 | await sleep(100);
72 | await (await fileChooser).setFiles(FILE_PATH);
at insertAttachment (/home/runner/work/blocksuite/blocksuite/tests/attachment.spec.ts:69:30)
at /home/runner/work/blocksuite/blocksuite/tests/attachment.spec.ts:677:3
|
code/copy-paste.spec.ts:66:1 › drag copy paste:
tests/code/copy-paste.spec.ts#L79
1) code/copy-paste.spec.ts:66:1 › drag copy paste ────────────────────────────────────────────────
Error: expect(received).toBe(expected) // Object.is equality
Expected: "useuse"
Received: "1234use"
77 |
78 | const content = await getInlineSelectionText(page);
> 79 | expect(content).toBe('useuse');
| ^
80 |
81 | await assertRichTextInlineRange(page, 0, 3, 0);
82 | });
at /home/runner/work/blocksuite/blocksuite/tests/code/copy-paste.spec.ts:79:19
|
hotkey/multiline.spec.ts:100:1 › should cut work multiple line:
tests/hotkey/multiline.spec.ts#L110
1) hotkey/multiline.spec.ts:100:1 › should cut work multiple line ────────────────────────────────
Error: Snapshot comparison failed:
{
"type": "block",
"id": "0",
"flavour": "affine:page",
"version": 2,
"props": {
"title": {
"$blocksuite:internal:text$": true,
"delta": []
}
},
"children": [
{
"type": "block",
"id": "1",
"flavour": "affine:note",
"version": 1,
"props": {
"xywh": "[0,0,498,92]",
"background": "--affine-note-background-white",
"index": "a0",
"hidden": false,
"displayMode": "both",
"edgeless": {
"style": {
"borderRadius": 8,
"borderSize": 4,
"borderStyle": "none",
"shadowType": "--affine-note-shadow-box"
}
}
},
"children": [
{
"type": "block",
"id": "2",
"flavour": "affine:paragraph",
"version": 1,
"props": {
"type": "text",
"text": {
"$blocksuite:internal:text$": true,
"delta": [
{
"insert": "123"
}
]
}
},
"children": []
},
{
"type": "block",
"id": "3",
"flavour": "affine:paragraph",
"version": 1,
"props": {
"type": "text",
"text": {
"$blocksuite:internal:text$": true,
"delta": [
{
"insert": "456"
}
]
}
},
"children": []
},
{
"type": "block",
"id": "4",
"flavour": "affine:paragraph",
"version": 1,
"props": {
"type": "text",
"text": {
"$blocksuite:internal:text$": true,
"delta": [
{
"insert": "789"
}
]
}
},
"children": []
}
]
}
]
}
Expected: /home/runner/work/blocksuite/blocksuite/tests/snapshots/hotkey/multiline.spec.ts/should-cut-work-multiple-line-init.json
Received: /home/runner/work/blocksuite/blocksuite/tests/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/blocksuite/blocksuite/tests/hotkey/multiline.spec.ts:110:45
|
selection/native.spec.ts:265:1 › cursor move to up and down with children block:
tests/selection/native.spec.ts#L294
1) selection/native.spec.ts:265:1 › cursor move to up and down with children block ───────────────
Error: expect(received).toBeGreaterThanOrEqual(expected)
Expected: >= 12
Received: -1
292 | const textTwo = await getInlineSelectionText(page);
293 | expect(textTwo).toBe('arrow down test 1');
> 294 | expect(indexTwo).toBeGreaterThanOrEqual(12);
| ^
295 | expect(indexTwo).toBeLessThanOrEqual(17);
296 | await page.keyboard.press('ArrowDown');
297 | const textThree = await getInlineSelectionText(page);
at /home/runner/work/blocksuite/blocksuite/tests/selection/native.spec.ts:294:20
|
edgeless/paste-block.spec.ts:39:3 › pasting blocks › pasting a note block:
tests/edgeless/paste-block.spec.ts#L63
1) edgeless/paste-block.spec.ts:39:3 › pasting blocks › pasting a note block ─────────────────────
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('affine-edgeless-note[data-block-id="10"]').locator('[data-block-id]').nth(1).locator('.resizable-img')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('affine-edgeless-note[data-block-id="10"]').locator('[data-block-id]').nth(1).locator('.resizable-img')
61 | const blocks = newNote.locator('[data-block-id]');
62 | await expect(blocks.nth(0)).toContainText('hello');
> 63 | await expect(blocks.nth(1).locator('.resizable-img')).toBeVisible();
| ^
64 | await expect(blocks.nth(2)).toContainText('world');
65 | await expect(blocks.nth(3)).toContainText('code');
66 | });
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/paste-block.spec.ts:63:59
|
slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works:
tests/slash-menu.spec.ts#L561
1) slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works ─────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 3
Received: 4
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
559 | // search should active the first item
560 | await type(page, 'co');
> 561 | await expect(slashItems).toHaveCount(3);
| ^
562 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
563 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Code Block']);
564 | await expect(slashItems.nth(0)).toHaveAttribute('hover', 'true');
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:561:30
|
slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works:
tests/slash-menu.spec.ts#L561
1) slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works ─────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 3
Received: 4
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
559 | // search should active the first item
560 | await type(page, 'co');
> 561 | await expect(slashItems).toHaveCount(3);
| ^
562 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
563 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Code Block']);
564 | await expect(slashItems.nth(0)).toHaveAttribute('hover', 'true');
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:561:30
|
slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works:
tests/slash-menu.spec.ts#L561
1) slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works ─────────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 3
Received: 4
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
559 | // search should active the first item
560 | await type(page, 'co');
> 561 | await expect(slashItems).toHaveCount(3);
| ^
562 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
563 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Code Block']);
564 | await expect(slashItems.nth(0)).toHaveAttribute('hover', 'true');
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:561:30
|
slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works:
tests/slash-menu.spec.ts#L561
1) slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works ─────────
Retry #3 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 3
Received: 4
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
- locator resolved to 4 elements
- unexpected value "4"
559 | // search should active the first item
560 | await type(page, 'co');
> 561 | await expect(slashItems).toHaveCount(3);
| ^
562 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
563 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Code Block']);
564 | await expect(slashItems.nth(0)).toHaveAttribute('hover', 'true');
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:561:30
|
slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search:
tests/slash-menu.spec.ts#L590
2) slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search ────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 8
Received: 9
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
588 |
589 | await type(page, 'c');
> 590 | await expect(slashItems).toHaveCount(8);
| ^
591 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
592 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Italic']);
593 | await expect(slashItems.nth(2).locator('.text')).toHaveText(['New Doc']);
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:590:30
|
slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search:
tests/slash-menu.spec.ts#L590
2) slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search ────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 8
Received: 9
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
588 |
589 | await type(page, 'c');
> 590 | await expect(slashItems).toHaveCount(8);
| ^
591 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
592 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Italic']);
593 | await expect(slashItems.nth(2).locator('.text')).toHaveText(['New Doc']);
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:590:30
|
slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search:
tests/slash-menu.spec.ts#L590
2) slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search ────────────────────
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 8
Received: 9
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
588 |
589 | await type(page, 'c');
> 590 | await expect(slashItems).toHaveCount(8);
| ^
591 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
592 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Italic']);
593 | await expect(slashItems.nth(2).locator('.text')).toHaveText(['New Doc']);
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:590:30
|
slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search:
tests/slash-menu.spec.ts#L590
2) slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search ────────────────────
Retry #3 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveCount(expected)
Locator: locator('.slash-menu').locator('icon-button')
Expected: 8
Received: 9
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.slash-menu').locator('icon-button')
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
- locator resolved to 9 elements
- unexpected value "9"
588 |
589 | await type(page, 'c');
> 590 | await expect(slashItems).toHaveCount(8);
| ^
591 | await expect(slashItems.nth(0).locator('.text')).toHaveText(['Copy']);
592 | await expect(slashItems.nth(1).locator('.text')).toHaveText(['Italic']);
593 | await expect(slashItems.nth(2).locator('.text')).toHaveText(['New Doc']);
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:590:30
|
slash-menu.spec.ts:376:3 › slash menu should show and hide correctly › should open and close menu when using left right arrow:
tests/slash-menu.spec.ts#L399
3) slash-menu.spec.ts:376: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)
- 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"
- 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"
- 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"
- 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"
- 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"
- 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"
- 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"
- 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"
- 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"
397 | await type(page, '/');
398 | await pressArrowDown(page, 4);
> 399 | await expect(slashItems.nth(4)).toHaveAttribute('hover', 'true');
| ^
400 | await expect(slashItems.nth(4).locator('.text')).toHaveText([
401 | 'Other Headings',
402 | ]);
at /home/runner/work/blocksuite/blocksuite/tests/slash-menu.spec.ts:399:37
|
E2E Test (20)
Process completed with exit code 1.
|
edgeless/shortcut.spec.ts:119:1 › should not switch shapes in editing:
tests/utils/actions/edgeless.ts#L357
1) edgeless/shortcut.spec.ts:119: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 is not stable
- retrying click action, attempt #1
- waiting for element to be visible, enabled and stable
- element was detached from the DOM, retrying
at utils/actions/edgeless.ts:357
355 | .locator('edgeless-slide-menu edgeless-tool-icon-button')
356 | .filter({ hasText: shape });
> 357 | await squareShapeButton.click();
| ^
358 | break;
359 | }
360 | }
at setEdgelessTool (/home/runner/work/blocksuite/blocksuite/tests/utils/actions/edgeless.ts:357:31)
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/shortcut.spec.ts:137:3
|
edgeless/note/drag-handle.spec.ts:122:1 › drag handle should work across multiple notes:
tests/edgeless/note/drag-handle.spec.ts#L141
1) edgeless/note/drag-handle.spec.ts:122:1 › drag handle should work across multiple notes ───────
Error: Timed out 5000ms waiting for expect(locator).toBeHidden()
Locator: locator('.affine-drag-handle-container')
Expected: hidden
Received: visible
Call log:
- expect.toBeHidden with timeout 5000ms
- waiting for locator('.affine-drag-handle-container')
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
- locator resolved to <div draggable="true" class="affine-drag-handle-container">…</div>
- unexpected value "visible"
139 | await page.mouse.dblclick(CENTER_X, CENTER_Y - 20);
140 | await dragHandleFromBlockToBlockBottomById(page, '3', '7');
> 141 | await expect(page.locator('.affine-drag-handle-container')).toBeHidden();
| ^
142 | await waitNextFrame(page);
143 | await assertRichTexts(page, ['456', '789', '000', '123']);
144 |
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/note/drag-handle.spec.ts:141:63
|
Build & Test
Process completed with exit code 1.
|
E2E Test (16)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (1)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (2)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (17)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (18)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (3)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (14)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (19)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (15)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (13)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (10)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (4)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (6)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (12)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (11)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (5)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (7)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (9)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
E2E Test (8)
Codecov:
Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
🎭 Playwright Run Summary
1 skipped
46 passed (46.9s)
|
🎭 Playwright Run Summary
1 flaky
attachment.spec.ts:670:1 › indent attachment block to paragraph ────────────────────────────────
2 skipped
45 passed (55.1s)
|
🎭 Playwright Run Summary
1 flaky
code/copy-paste.spec.ts:66:1 › drag copy paste ─────────────────────────────────────────────────
1 skipped
46 passed (51.1s)
|
🎭 Playwright Run Summary
47 passed (47.3s)
|
🎭 Playwright Run Summary
47 passed (54.8s)
|
🎭 Playwright Run Summary
4 skipped
44 passed (52.3s)
|
🎭 Playwright Run Summary
1 flaky
hotkey/multiline.spec.ts:100:1 › should cut work multiple line ─────────────────────────────────
46 passed (59.7s)
|
🎭 Playwright Run Summary
1 flaky
selection/native.spec.ts:265:1 › cursor move to up and down with children block ────────────────
46 passed (56.2s)
|
🎭 Playwright Run Summary
1 skipped
46 passed (57.6s)
|
🎭 Playwright Run Summary
47 passed (1.1m)
|
🎭 Playwright Run Summary
1 flaky
edgeless/paste-block.spec.ts:39:3 › pasting blocks › pasting a note block ──────────────────────
1 skipped
45 passed (1.1m)
|
🎭 Playwright Run Summary
47 passed (1.0m)
|
🎭 Playwright Run Summary
2 failed
slash-menu.spec.ts:549:3 › slash search › should slash menu search and keyboard works ──────────
slash-menu.spec.ts:578:3 › slash search › slash menu supports fuzzy search ─────────────────────
1 flaky
slash-menu.spec.ts:376:3 › slash menu should show and hide correctly › should open and close menu when using left right arrow, Enter, Esc keys
3 skipped
41 passed (1.1m)
|
🎭 Playwright Run Summary
47 passed (1.3m)
|
🎭 Playwright Run Summary
1 flaky
edgeless/shortcut.spec.ts:119:1 › should not switch shapes in editing ──────────────────────────
2 skipped
44 passed (1.1m)
|
🎭 Playwright Run Summary
1 skipped
46 passed (1.6m)
|
🎭 Playwright Run Summary
6 skipped
41 passed (1.5m)
|
🎭 Playwright Run Summary
1 skipped
46 passed (1.6m)
|
🎭 Playwright Run Summary
1 flaky
edgeless/note/drag-handle.spec.ts:122:1 › drag handle should work across multiple notes ────────
10 skipped
36 passed (1.5m)
|
🎭 Playwright Run Summary
47 passed (1.7m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
test-results-e2e-20
|
8.44 MB |
|