chore: bump up all non-major dependencies #5425
test.yml
on: pull_request
Install Dependencies
43s
Build & Test
0s
Annotations
7 errors, 20 warnings, and 20 notices
clipboard/markdown.spec.ts:19:1 › markdown format parse:
tests/utils/asserts.ts#L632
1) clipboard/markdown.spec.ts:19:1 › markdown format parse ───────────────────────────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 2
+ Received + 1
@@ -1,6 +1,7 @@
Array [
+ "text",
"h1",
"h2",
"h3",
"h4",
"h5",
@@ -8,8 +9,6 @@
"todo",
"todo",
"todo",
"bulleted",
"bulleted",
- "numbered",
- "quote",
]
at utils/asserts.ts:632
630 | );
631 | }, currentEditorIndex);
> 632 | expect(actual).toEqual(blockTypes);
| ^
633 | }
634 |
635 | /**
at assertBlockTypes (/home/runner/work/blocksuite/blocksuite/tests/utils/asserts.ts:632:18)
at /home/runner/work/blocksuite/blocksuite/tests/clipboard/markdown.spec.ts:56:3
|
selection/native.spec.ts:436:1 › cursor move to up and down with children block:
tests/selection/native.spec.ts#L465
1) selection/native.spec.ts:436:1 › cursor move to up and down with children block ───────────────
Error: expect(received).toBeGreaterThanOrEqual(expected)
Expected: >= 12
Received: 0
463 | const textTwo = await getInlineSelectionText(page);
464 | expect(textTwo).toBe('arrow down test 1');
> 465 | expect(indexTwo).toBeGreaterThanOrEqual(12);
| ^
466 | expect(indexTwo).toBeLessThanOrEqual(17);
467 | await page.keyboard.press('ArrowDown');
468 | const textThree = await getInlineSelectionText(page);
at /home/runner/work/blocksuite/blocksuite/tests/selection/native.spec.ts:465:20
|
hotkey.spec.ts:928:1 › should cut work multiple line:
tests/utils/asserts.ts#L742
1) hotkey.spec.ts:928:1 › should cut work multiple line ──────────────────────────────────────────
Error: <affine:note
prop:background="--affine-note-background-blue"
prop:displayMode="both"
prop:edgeless={
Object {
"style": Object {
"borderRadius": 0,
"borderSize": 4,
"borderStyle": "none",
"shadowType": "--affine-note-shadow-sticker",
},
}
}
prop:hidden={false}
prop:index="a0"
>
<affine:paragraph
prop:text="123"
prop:type="text"
/>
<affine:paragraph
prop:text="456"
prop:type="text"
/>
<affine:paragraph
prop:text="789"
prop:type="text"
/>
</affine:note>
expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 9
@@ -13,9 +13,17 @@
}
prop:hidden={false}
prop:index="a0"
>
<affine:paragraph
- prop:text="19"
+ prop:text="123"
+ prop:type="text"
+ />
+ <affine:paragraph
+ prop:text="456"
+ prop:type="text"
+ />
+ <affine:paragraph
+ prop:text="789"
prop:type="text"
/>
</affine:note>
at utils/asserts.ts:742
740 | printFunctionName: false,
741 | });
> 742 | expect(formattedJSX, formattedJSX).toEqual(snapshot.trimStart());
| ^
743 | }
744 |
745 | type MimeType = 'text/plain' | 'blocksuite/x-c+w' | 'text/html';
at assertStoreMatchJSX (/home/runner/work/blocksuite/blocksuite/tests/utils/asserts.ts:742:38)
at /home/runner/work/blocksuite/blocksuite/tests/hotkey.spec.ts:938:3
|
hotkey.spec.ts:1003:1 › should ctrl+enter create new block:
tests/utils/asserts.ts#L209
2) hotkey.spec.ts:1003:1 › should ctrl+enter create new block ────────────────────────────────────
Error: expect(received).toEqual(expected) // deep equality
- Expected - 2
+ Received + 2
Array [
- "1",
- "23",
+ "12",
+ "3",
]
at utils/asserts.ts:209
207 | });
208 | }, currentEditorIndex);
> 209 | expect(actualTexts).toEqual(texts);
| ^
210 | }
211 |
212 | export async function assertEdgelessCanvasText(page: Page, text: string) {
at assertRichTexts (/home/runner/work/blocksuite/blocksuite/tests/utils/asserts.ts:209:23)
at /home/runner/work/blocksuite/blocksuite/tests/hotkey.spec.ts:1013:3
|
edgeless/note/note.spec.ts:246:1 › duplicate note should work correctly:
tests/edgeless/note/note.spec.ts#L272
1) edgeless/note/note.spec.ts:246:1 › duplicate note should work correctly ───────────────────────
Error: expect(received).toBeCloseTo(expected)
Expected: 729.3023071289062
Received: 764.6512145996094
Expected precision: 2
Expected difference: < 0.005
Received difference: 35.348907470703125
270 | const firstNoteBox = await firstNote.boundingBox();
271 | const secondNoteBox = await secondNote.boundingBox();
> 272 | expect(firstNoteBox!.width).toBeCloseTo(secondNoteBox!.width);
| ^
273 | expect(firstNoteBox!.height).toBeCloseTo(secondNoteBox!.height);
274 | });
275 |
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/note/note.spec.ts:272:31
|
edgeless/shortcut.spec.ts:119:1 › should not switch shapes in editing:
tests/utils/actions/edgeless.ts#L356
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-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 is not stable
- retrying click action, attempt #2
- waiting 20ms
- waiting for element to be visible, enabled and stable
- element was detached from the DOM, retrying
at utils/actions/edgeless.ts:356
354 | .locator('edgeless-tool-icon-button')
355 | .filter({ hasText: shape });
> 356 | await squareShapeButton.click();
| ^
357 | break;
358 | }
359 | }
at setEdgelessTool (/home/runner/work/blocksuite/blocksuite/tests/utils/actions/edgeless.ts:356:31)
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/shortcut.spec.ts:137:3
|
edgeless/connector/label.spec.ts:306:3 › connector label with straight shape › should exit the label editing state when pressing `Mod-Enter` or `Escape`:
tests/utils/asserts.ts#L230
1) edgeless/connector/label.spec.ts:306:3 › connector label with straight shape › should exit the label editing state when pressing `Mod-Enter` or `Escape`
Error: expect(received).toEqual(expected) // deep equality
Expected: "b"
Received: "a"
at utils/asserts.ts:230
228 | return inlineEditor?.yText.toString();
229 | });
> 230 | expect(actualTexts).toEqual(text);
| ^
231 | }
232 |
233 | export async function assertRichImage(page: Page, count: number) {
at assertEdgelessCanvasText (/home/runner/work/blocksuite/blocksuite/tests/utils/asserts.ts:230:23)
at /home/runner/work/blocksuite/blocksuite/tests/edgeless/connector/label.spec.ts:323:5
|
E2E Test (20)
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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (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 (8)
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
|
🎭 Playwright Run Summary
3 skipped
42 passed (39.5s)
|
🎭 Playwright Run Summary
1 flaky
clipboard/markdown.spec.ts:19:1 › markdown format parse ────────────────────────────────────────
1 skipped
44 passed (45.4s)
|
🎭 Playwright Run Summary
45 passed (52.9s)
|
🎭 Playwright Run Summary
45 passed (48.4s)
|
🎭 Playwright Run Summary
4 skipped
42 passed (45.9s)
|
🎭 Playwright Run Summary
45 passed (58.0s)
|
🎭 Playwright Run Summary
1 flaky
selection/native.spec.ts:436:1 › cursor move to up and down with children block ────────────────
44 passed (55.9s)
|
🎭 Playwright Run Summary
46 passed (51.5s)
|
🎭 Playwright Run Summary
45 passed (52.0s)
|
🎭 Playwright Run Summary
1 skipped
44 passed (52.1s)
|
🎭 Playwright Run Summary
2 flaky
hotkey.spec.ts:928:1 › should cut work multiple line ───────────────────────────────────────────
hotkey.spec.ts:1003:1 › should ctrl+enter create new block ─────────────────────────────────────
1 skipped
42 passed (1.0m)
|
🎭 Playwright Run Summary
46 passed (56.0s)
|
🎭 Playwright Run Summary
1 flaky
edgeless/note/note.spec.ts:246:1 › duplicate note should work correctly ────────────────────────
45 passed (1.0m)
|
🎭 Playwright Run Summary
1 flaky
edgeless/shortcut.spec.ts:119:1 › should not switch shapes in editing ──────────────────────────
3 skipped
41 passed (1.1m)
|
🎭 Playwright Run Summary
10 skipped
36 passed (1.3m)
|
🎭 Playwright Run Summary
46 passed (1.2m)
|
🎭 Playwright Run Summary
46 passed (1.4m)
|
🎭 Playwright Run Summary
45 passed (1.7m)
|
🎭 Playwright Run Summary
46 passed (1.8m)
|
🎭 Playwright Run Summary
1 flaky
edgeless/connector/label.spec.ts:306:3 › connector label with straight shape › should exit the label editing state when pressing `Mod-Enter` or `Escape`
45 passed (1.7m)
|