[ACS-8113] UX bug - Checkbox selections checked state should be Hyland blue not green- edit summary #2987
pull-request.yml
on: pull_request
Annotations
20 errors, 23 warnings, and 16 notices
[Navigation] › src/tests/sidebar.e2e.ts:69:7 › Sidebar › [C269096] sidebar toggle:
e2e/playwright/navigation/src/tests/sidebar.e2e.ts#L74
1) [Navigation] › src/tests/sidebar.e2e.ts:69:7 › Sidebar › [C269096] sidebar toggle ─────────────
Error: Sidebar not expanded
expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
72 | expect(await personalFiles.sidenav.isSidenavExpanded(), 'Sidebar expanded').toBe(false);
73 | await personalFiles.sidenav.expandSideNav();
> 74 | expect(await personalFiles.sidenav.isSidenavExpanded(), 'Sidebar not expanded').toBe(true);
| ^
75 | });
76 |
77 | test('[C277224] sidenav returns to the default state when navigating away from the Search Results page', async ({ personalFiles, searchPage }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/navigation/src/tests/sidebar.e2e.ts:74:85
|
[Navigation] › src/tests/sidebar.e2e.ts:69:7 › Sidebar › [C269096] sidebar toggle:
e2e/playwright/navigation/src/tests/sidebar.e2e.ts#L74
1) [Navigation] › src/tests/sidebar.e2e.ts:69:7 › Sidebar › [C269096] sidebar toggle ─────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Sidebar not expanded
expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
72 | expect(await personalFiles.sidenav.isSidenavExpanded(), 'Sidebar expanded').toBe(false);
73 | await personalFiles.sidenav.expandSideNav();
> 74 | expect(await personalFiles.sidenav.isSidenavExpanded(), 'Sidebar not expanded').toBe(true);
| ^
75 | });
76 |
77 | test('[C277224] sidenav returns to the default state when navigating away from the Search Results page', async ({ personalFiles, searchPage }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/navigation/src/tests/sidebar.e2e.ts:74:85
|
[Navigation] › src/tests/sidebar.e2e.ts:77:7 › Sidebar › [C277224] sidenav returns to the default state when navigating away from the Search Results page:
e2e/playwright/navigation/src/tests/sidebar.e2e.ts#L81
2) [Navigation] › src/tests/sidebar.e2e.ts:77:7 › Sidebar › [C277224] sidenav returns to the default state when navigating away from the Search Results page
Error: Sidebar not expanded
expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
79 | await searchPage.searchInput.getIconByName('close').click();
80 | await searchPage.sidenav.expandedSidenav.waitFor({ state: 'attached' });
> 81 | expect(await personalFiles.sidenav.isSidenavExpanded(), 'Sidebar not expanded').toBe(true);
| ^
82 | });
83 | });
84 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/navigation/src/tests/sidebar.e2e.ts:81:85
|
[Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries:
e2e/playwright/navigation/src/tests/single-click.e2e.ts#L1
3) [Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries
Error: {"error":{"errorKey":"Person 'user-1t6if' already exists.","statusCode":409,"briefSummary":"06032769 Person 'user-1t6if' already exists.","stackTrace":"For security reasons the stack trace is no longer displayed, but the property is kept for previous versions","descriptionURL":"https://api-explorer.alfresco.com","logId":"e88e5802-f0f8-4299-9f96-7caa0a204f83"}}
at Request.callback (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:875:17)
at fn (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/index.js:1165:18)
at IncomingMessage.<anonymous> (/home/runner/work/alfresco-content-app/alfresco-content-app/node_modules/superagent/src/node/parsers/json.js:19:7)
|
[Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer:
e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts#L65
1) [Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer
Error: expect(received).toContain(expected) // indexOf
Expected substring: "This is a small demonstration"
Received string: ""
63 | await expect(pageLoaded).toBeVisible();
64 | await expect(textLayerLoaded).toBeVisible();
> 65 | expect(await specificText).toContain(text);
| ^
66 | }
67 |
68 | test('[C595967] Should preview document from the info drawer', async ({ personalFiles }) => {
at checkFileContent (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts:65:32)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/file-preview.e2e.ts:76:5
|
[Create Actions] › src/tests/create-library.e2e.ts:115:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library:
e2e/playwright/create-actions/src/tests/create-library.e2e.ts#L120
1) [Create Actions] › src/tests/create-library.e2e.ts:115:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library-jzkwe]')
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library-jzkwe]')
118 | await expect(libraryDialog.getLabelText(libraryIdLabel)).toHaveValue(randomLibraryName);
119 | await libraryDialog.createButton.click();
> 120 | await expect(libraryBreadcrumb.getItemByTitle(randomLibraryName)).toBeVisible();
| ^
121 |
122 | await myLibrariesPage.navigate();
123 | await expect(libraryTable.getCellByColumnNameAndRowItem(randomLibraryName, publicVisibility)).toBeVisible();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/create-actions/src/tests/create-library.e2e.ts:120:73
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L131
1) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification
Error: expect(received).toEqual(expected) // deep equality
Expected: " Showing 1--1 of -1 "
Received: " Showing 1-12 of 12 "
129 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeFalsy();
130 | items--;
> 131 | expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
| ^
132 | await trashPage.navigate();
133 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeTruthy();
134 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:131:60
|
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification:
e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts#L131
1) [Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(received).toEqual(expected) // deep equality
Expected: " Showing 1--1 of -1 "
Received: " Showing 1-12 of 12 "
129 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeFalsy();
130 | items--;
> 131 | expect(await personalFiles.pagination.getMaxRange()).toEqual(` Showing 1-${items} of ${items} `);
| ^
132 | await trashPage.navigate();
133 | expect(await personalFiles.dataTable.isItemPresent(file1)).toBeTruthy();
134 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/delete-actions/src/tests/delete-undo-delete.e2e.ts:131:60
|
[Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options:
e2e/playwright/search/src/tests/search-filters-logic.e2e.ts#L157
1) [Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options
Error: expect(received).toBe(expected) // Object.is equality
Expected: 1
Received: 0
155 | await searchPage.dataTable.progressBarWaitForReload();
156 |
> 157 | expect(await searchPage.dataTable.getRowsCount()).toBe(1);
| ^
158 | await expect(searchPage.dataTable.getRowByName(logicFile1.name)).toBeHidden();
159 | await expect(searchPage.dataTable.getRowByName(logicFile2.name)).toBeVisible();
160 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-logic.e2e.ts:157:55
|
[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#L92
2) [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).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: '9rqxk-fileNameKb.pdf' })
Expected: visible
Received: hidden
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: '9rqxk-fileNameKb.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 | });
95 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-filters-properties.e2e.ts:92:68
|
[Search] › src/tests/search-results-files-folders.e2e.ts:63:7 › Search results - files and folders › [C279177] Location column redirect - file in user Home:
e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts#L1
3) [Search] › src/tests/search-results-files-folders.e2e.ts:63:7 › Search results - files and folders › [C279177] Location column redirect - file in user Home
Test timeout of 85000ms exceeded.
|
[Search] › src/tests/search-results-files-folders.e2e.ts:63:7 › Search results - files and folders › [C279177] Location column redirect - file in user Home:
e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts#L71
3) [Search] › src/tests/search-results-files-folders.e2e.ts:63:7 › Search results - files and folders › [C279177] Location column redirect - file in user Home
Error: locator.textContent: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item')
69 | await searchPage.searchWithin(file, 'files');
70 | await searchPage.dataTable.clickItemLocation(file);
> 71 | expect((await personalFiles.breadcrumb.items.textContent()).trim()).toEqual('Personal Files');
| ^
72 | });
73 | });
74 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-results-files-folders.e2e.ts:71:50
|
[Search] › src/tests/search-results-general.e2e.ts:95:7 › Search Results - General › [C279162] Results are updated automatically when changing the search term:
e2e/playwright/search/src/tests/search-results-general.e2e.ts#L98
4) [Search] › src/tests/search-results-general.e2e.ts:95:7 › Search Results - General › [C279162] Results are updated automatically when changing the search term
Error: expect(received).toBeTruthy()
Received: false
96 | await searchPage.searchWithin(file, 'filesAndFolders');
97 |
> 98 | expect(await searchPage.dataTable.isItemPresent(file)).toBeTruthy();
| ^
99 | expect(await searchPage.dataTable.isItemPresent(folder)).toBeFalsy();
100 |
101 | await searchPage.searchInput.searchButton.click();
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-results-general.e2e.ts:98:60
|
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date:
e2e/playwright/search/src/tests/search-sorting.e2e.ts#L114
5) [Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date
Error: expect(received).toContain(expected) // indexOf
Expected substring: "search-sort-jqkfq-file-1.jpg"
Received string: " Select file search-sort-jqkfq-file-2.pdf ( search sort title )search-sort-${random}-fileCompany Home › User Homes › user1-jqkfq › parent-jqkfq2.96 KB less than a minute ago user2-jqkfq user2-jqkfq View 0 more "
112 | await searchPage.searchSortingPicker.sortBy(sortBy, sortOrder);
113 |
> 114 | expect(await searchPage.dataTable.getNthRow(0).textContent()).toContain(expectedFirstFile);
| ^
115 | expect(await searchPage.dataTable.getNthRow(1).textContent()).toContain(expectedSecondFile);
116 | }
117 |
at testSearchSorting (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:114:67)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-sorting.e2e.ts:163:7
|
[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] › 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] › 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#L196
1) [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-1anet' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:196
194 | */
195 | async performClickFolderOrFileToOpen(name: string): Promise<void> {
> 196 | await this.getCellLinkByName(name).click();
| ^
197 | await this.spinnerWaitForReload();
198 | }
199 |
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:196: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
|
[Library Actions] › src/tests/library-actions.e2e.ts:384:9 › Library actions › Search Page › [C306962] Cancel join from Search Results:
e2e/playwright/library-actions/src/tests/library-actions.e2e.ts#L1
1) [Library Actions] › src/tests/library-actions.e2e.ts:384:9 › Library actions › Search Page › [C306962] Cancel join from Search Results
Test timeout of 85000ms exceeded.
|
[Library Actions] › src/tests/library-actions.e2e.ts:384:9 › Library actions › Search Page › [C306962] Cancel join from Search Results:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L170
1) [Library Actions] › src/tests/library-actions.e2e.ts:384:9 › Library actions › Search Page › [C306962] Cancel join from Search Results
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-menu-content button').filter({ hasText: 'Cancel Join Request' })
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:170
168 | await this.goThroughPagesLookingForRowWithName(name);
169 | const actionButtonLocator = await this.getActionLocatorFromExpandableMenu(name, action);
> 170 | await actionButtonLocator.click();
| ^
171 | await this.spinnerWaitForReload();
172 | }
173 |
at DataTableComponent.performActionFromExpandableMenu (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:170:31)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/library-actions/src/tests/library-actions.e2e.ts:389:7
|
[List Views] › src/tests/trash.e2e.ts:102:9 › Trash › Regular user's personal files › [C280496] Location column redirect - file in folder:
e2e/playwright/list-views/src/tests/trash.e2e.ts#L1
1) [List Views] › src/tests/trash.e2e.ts:102:9 › Trash › Regular user's personal files › [C280496] Location column redirect - file in folder
Test timeout of 85000ms exceeded.
|
[List Views] › src/tests/trash.e2e.ts:102:9 › Trash › Regular user's personal files › [C280496] Location column redirect - file in folder:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L289
1) [List Views] › src/tests/trash.e2e.ts:102:9 › Trash › Regular user's personal files › [C280496] Location column redirect - file in folder
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'file-jt1ff.txt' }).locator('.aca-location-link')
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:289
287 |
288 | async clickItemLocation(name: string): Promise<void> {
> 289 | await this.getItemLocationEl(name).click();
| ^
290 | }
291 |
292 | async getSortingOrder(): Promise<string> {
at DataTableComponent.clickItemLocation (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:289:40)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/trash.e2e.ts:103:33
|
lint
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
build
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/save@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Unit tests: aca-content
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Unit tests: aca-shared
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - authentication
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - folder-rules
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - favorite-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - navigation
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Protractor - editActions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - share-action
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - info-drawer
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - create-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - pagination
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - upload-download-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - viewer
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - delete-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - special-permissions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - search
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - copy-move-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - library-actions
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
E2E Playwright - list-views
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/cache/restore@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
Deprecation notice: v1, v2, and v3 of the artifact actions
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "editActions".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Finalize
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
🎭 Playwright Run Summary
5 passed (24.7s)
|
🎭 Playwright Run Summary
3 passed (35.8s)
|
🎭 Playwright Run Summary
9 passed (57.5s)
|
🎭 Playwright Run Summary
3 flaky
[Navigation] › src/tests/sidebar.e2e.ts:69:7 › Sidebar › [C269096] sidebar toggle ──────────────
[Navigation] › src/tests/sidebar.e2e.ts:77:7 › Sidebar › [C277224] sidenav returns to the default state when navigating away from the Search Results page
[Navigation] › src/tests/single-click.e2e.ts:83:7 › Single click on item name › [C284902] Navigate inside the library when clicking the hyperlink on File Libraries
13 passed (1.8m)
|
🎭 Playwright Run Summary
15 passed (2.1m)
|
🎭 Playwright Run Summary
1 flaky
[Info Drawer] › src/tests/file-preview.e2e.ts:68:7 › File preview › [C595967] Should preview document from the info drawer
17 passed (2.3m)
|
🎭 Playwright Run Summary
1 flaky
[Create Actions] › src/tests/create-library.e2e.ts:115:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
19 passed (2.4m)
|
🎭 Playwright Run Summary
11 passed (2.8m)
|
🎭 Playwright Run Summary
29 passed (3.1m)
|
🎭 Playwright Run Summary
27 passed (3.5m)
|
🎭 Playwright Run Summary
1 flaky
[Delete Actions] › src/tests/delete-undo-delete.e2e.ts:119:9 › Delete and undo delete › on Personal Files › [C217125] delete a file and check notification
22 passed (3.8m)
|
🎭 Playwright Run Summary
64 passed (5.4m)
|
🎭 Playwright Run Summary
5 flaky
[Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options
[Search] › src/tests/search-filters-properties.e2e.ts:87:7 › Search - Filters - Properties › [C699047] Filter by type
[Search] › src/tests/search-results-files-folders.e2e.ts:63:7 › Search results - files and folders › [C279177] Location column redirect - file in user Home
[Search] › src/tests/search-results-general.e2e.ts:95:7 › Search Results - General › [C279162] Results are updated automatically when changing the search term
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date
41 passed (6.6m)
|
🎭 Playwright Run Summary
1 flaky
[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.5m)
|
🎭 Playwright Run Summary
1 flaky
[Library Actions] › src/tests/library-actions.e2e.ts:384:9 › Library actions › Search Page › [C306962] Cancel join from Search Results
18 passed (6.5m)
|
🎭 Playwright Run Summary
1 flaky
[List Views] › src/tests/trash.e2e.ts:102:9 › Trash › Regular user's personal files › [C280496] Location column redirect - file in folder
63 passed (8.4m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
editActions
Expired
|
2.12 MB |
|