Update angular/cli #4480
pull-request.yml
on: pull_request
Annotations
9 errors, 7 warnings, and 17 notices
[Copy Move Actions] › e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination:
e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts#L1
1) [Copy Move Actions] › e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
Test timeout of 150000ms exceeded.
|
[Copy Move Actions] › e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L204
1) [Copy Move Actions] › e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
Error: locator.click: Test timeout of 150000ms exceeded.
Call log:
- waiting for locator('adf-datatable .adf-cell-value span[role="link"]').filter({ hasText: 'site-hi0mf' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204
202 | */
203 | async performClickFolderOrFileToOpen(name: string): Promise<void> {
> 204 | await this.getCellLinkByName(name).click();
| ^
205 | await this.spinnerWaitForReload();
206 | }
207 |
at DataTableComponent.performClickFolderOrFileToOpen (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:204:40)
at copyContentInMyLibraries (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:76:37)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:92:11
|
[Search] › e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type:
e2e/playwright/search/src/tests/search-filters-properties.e2e.ts#L91
1) [Search] › e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
Expected string: "Properties: pdf"
Received string: "Properties: 3g2 keyboard_arrow_down"
Call log:
- expect.toContainText with timeout 5000ms
- waiting for locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
9 × locator resolved to <adf-search-widget-chip class="ng-star-inserted" ng-reflect-category="[object Object]">…</adf-search-widget-chip>
- unexpected value "Properties: 3g2 keyboard_arrow_down"
89 | await searchPage.searchFiltersProperties.setPropertiesParameters(searchPage, undefined, undefined, undefined, 'pdf');
90 |
> 91 | await expect(searchPage.searchFilters.propertiesFilter).toContainText('Properties: pdf');
| ^
92 | await expect(searchPage.dataTable.getRowByName(fileNamePdfKb)).toBeVisible();
93 | await expect(searchPage.dataTable.getRowByName(fileNameJpgMb)).toBeHidden();
94 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:91:61
|
[Search] › e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type:
e2e/playwright/search/src/tests/search-filters-properties.e2e.ts#L91
1) [Search] › e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
Expected string: "Properties: pdf"
Received string: "Properties: 3g2 keyboard_arrow_down"
Call log:
- expect.toContainText with timeout 5000ms
- waiting for locator('adf-search-widget-chip').filter({ hasText: 'Properties' })
9 × locator resolved to <adf-search-widget-chip class="ng-star-inserted" ng-reflect-category="[object Object]">…</adf-search-widget-chip>
- unexpected value "Properties: 3g2 keyboard_arrow_down"
89 | await searchPage.searchFiltersProperties.setPropertiesParameters(searchPage, undefined, undefined, undefined, 'pdf');
90 |
> 91 | await expect(searchPage.searchFilters.propertiesFilter).toContainText('Properties: pdf');
| ^
92 | await expect(searchPage.dataTable.getRowByName(fileNamePdfKb)).toBeVisible();
93 | await expect(searchPage.dataTable.getRowByName(fileNameJpgMb)).toBeHidden();
94 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:91:61
|
[Search] › e2e/playwright/search/src/tests/search-highlighting.e2e.ts:69:7 › Search Highlighting › [XAT-17120] Matching phrases should be highlighted in the file description for search results:
e2e/playwright/search/src/tests/search-highlighting.e2e.ts#L71
2) [Search] › e2e/playwright/search/src/tests/search-highlighting.e2e.ts:69:7 › Search Highlighting › [XAT-17120] Matching phrases should be highlighted in the file description for search results
Error: expect(received).toBeTruthy()
Received: false
69 | test('[XAT-17120] Matching phrases should be highlighted in the file description for search results', async ({ searchPage }) => {
70 | await searchPage.searchWithin(fileDescription, 'files');
> 71 | expect(await searchPage.dataTable.hasHighlightedText('description')).toBeTruthy();
| ^
72 | expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy();
73 | });
74 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-highlighting.e2e.ts:71:74
|
[Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts#L1
1) [Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Test timeout of 85000ms exceeded.
|
[Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts#L66
1) [Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Error: locator.fill: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('aca-edit-rule-dialog [data-automation-id="value-input"]').nth(1)
at ../../../projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66
64 | await this.selectComparator(comparators, index);
65 | }
> 66 | await this.valueField.nth(index).fill(value);
| ^
67 | }
68 |
69 | async addConditionGroup(fields: Partial<Field>, value: string, index: number, comparators?: Partial<Comparator>): Promise<void> {
at ConditionComponent.addCondition (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66:38)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:153:5
|
[Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts#L1
1) [Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 85000ms exceeded.
|
[Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions:
projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts#L66
1) [Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.fill: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('aca-edit-rule-dialog [data-automation-id="value-input"]').nth(1)
at ../../../projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66
64 | await this.selectComparator(comparators, index);
65 | }
> 66 | await this.valueField.nth(index).fill(value);
| ^
67 | }
68 |
69 | async addConditionGroup(fields: Partial<Field>, value: string, index: number, comparators?: Partial<Comparator>): Promise<void> {
at ConditionComponent.addCondition (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/conditions.component.ts:66:38)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:153:5
|
build
Cache save failed.
|
Slow Test:
[Navigation] › e2e/playwright/navigation/src/tests/breadcrumb-admin.e2e.ts#L1
[Navigation] › e2e/playwright/navigation/src/tests/breadcrumb-admin.e2e.ts took 15.6s
|
Slow Test:
[Info Drawer] › e2e/playwright/info-drawer/src/tests/general.e2e.ts#L1
[Info Drawer] › e2e/playwright/info-drawer/src/tests/general.e2e.ts took 24.7s
|
Slow Test:
[Info Drawer] › e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts#L1
[Info Drawer] › e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts took 16.5s
|
Slow Test:
[Search] › e2e/playwright/search/src/tests/search-filters-general.e2e.ts#L1
[Search] › e2e/playwright/search/src/tests/search-filters-general.e2e.ts took 44.9s
|
Slow Test:
[Search] › e2e/playwright/search/src/tests/search-filters-tags.e2e.ts#L1
[Search] › e2e/playwright/search/src/tests/search-filters-tags.e2e.ts took 28.7s
|
Slow Test:
[Viewer] › e2e/playwright/viewer/src/tests/viewer-useraction.e2e.ts#L1
[Viewer] › e2e/playwright/viewer/src/tests/viewer-useraction.e2e.ts took 25.9s
|
🎭 Playwright Run Summary
6 passed (25.3s)
|
🎭 Playwright Run Summary
9 passed (1.0m)
|
🎭 Playwright Run Summary
11 passed (1.3m)
|
🎭 Playwright Run Summary
16 passed (1.5m)
|
🎭 Playwright Run Summary
15 passed (1.7m)
|
🎭 Playwright Run Summary
20 passed (1.7m)
|
🎭 Playwright Run Summary
11 passed (1.8m)
|
🎭 Playwright Run Summary
25 passed (2.5m)
|
🎭 Playwright Run Summary
29 passed (2.8m)
|
🎭 Playwright Run Summary
23 passed (3.3m)
|
🎭 Playwright Run Summary
19 passed (3.1m)
|
🎭 Playwright Run Summary
67 passed (5.8m)
|
🎭 Playwright Run Summary
64 passed (5.8m)
|
🎭 Playwright Run Summary
1 flaky
[Copy Move Actions] › e2e/playwright/copy-move-actions/src/tests/destination-picker-dialog.e2e.ts:89:7 › Copy Move actions › [C263877] Contributor user can select the folder as destination
22 passed (6.4m)
|
🎭 Playwright Run Summary
2 flaky
[Search] › e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
[Search] › e2e/playwright/search/src/tests/search-highlighting.e2e.ts:69:7 › Search Highlighting › [XAT-17120] Matching phrases should be highlighted in the file description for search results
46 passed (6.4m)
|
🎭 Playwright Run Summary
1 flaky
[Folder Rules] › e2e/playwright/folder-rules/src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
23 passed (6.5m)
|
🎭 Playwright Run Summary
44 passed (6.8m)
|