GH Auto: Upstream dependencies ADF:7.0.0-alpha.4-11504788690 JS-API:8.0.0-alpha.4-11504788690 using Tag:7.0.0-alpha.4-11504788690 #3762
pull-request.yml
on: pull_request
Annotations
22 errors, 4 warnings, and 17 notices
[Create Actions] › src/tests/create-library.e2e.ts:117:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library:
e2e/playwright/create-actions/src/tests/create-library.e2e.ts#L122
1) [Create Actions] › src/tests/create-library.e2e.ts:117: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-1cu6c]')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-breadcrumb .adf-breadcrumb-item[title=playwright-library-1cu6c]')
120 | await expect(libraryDialog.getLabelText(libraryIdLabel)).toHaveValue(randomLibraryName);
121 | await libraryDialog.createButton.click();
> 122 | await expect(libraryBreadcrumb.getItemByTitle(randomLibraryName)).toBeVisible();
| ^
123 |
124 | await myLibrariesPage.navigate();
125 | 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:122:73
|
[Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order:
e2e/playwright/info-drawer/src/tests/comments.e2e.ts#L1
1) [Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order
Test timeout of 85000ms exceeded.
|
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long:
e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts#L1
2) [Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
Test timeout of 85000ms exceeded.
|
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long:
e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts#L186
2) [Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'site1-wmasj' })
184 | test('[C289343] Site description too long', async ({ myLibrariesPage }) => {
185 | await Utils.reloadPageIfRowNotVisible(myLibrariesPage, site.name);
> 186 | await myLibrariesPage.dataTable.getRowByName(site.name).click();
| ^
187 | await myLibrariesPage.acaHeader.viewDetails.click();
188 | await expect(myLibrariesPage.libraryDetails.infoDrawerPanel).toBeVisible();
189 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/info-drawer/src/tests/library-properties.e2e.ts:186:61
|
[Folder Rules] › src/tests/create-rules.e2e.ts:158:7 › Folder Rules Actions › [XAT-889] Create a rule which runs when items are deleted or leave a folder:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L180
1) [Folder Rules] › src/tests/create-rules.e2e.ts:158:7 › Folder Rules Actions › [XAT-889] Create a rule which runs when items are deleted or leave a folder
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: locator('adf-datatable adf-datatable-row').filter({ hasText: 'copy-file-10wn8' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'copy-file-10wn8' })
178 |
179 | await personalFiles.navigate({ remoteUrl: `#/personal-files/${randomFolderName2Id}` });
> 180 | await expect(personalFiles.dataTable.getRowByName(copyFileName)).toBeVisible();
| ^
181 | });
182 |
183 | test('[XAT-890] Create a rule which adds multiple aspects when its ran', async ({ nodesPage, personalFiles }) => {
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:180:70
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts#L1
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Test timeout of 85000ms exceeded.
|
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button:
projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts#L86
2) [Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('.mat-mdc-select-panel .mdc-list-item__primary-text').filter({ hasText: 'Controls' }).first().first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86
84 | async dropdownSelection(selectValue: string, locator: string, index: number): Promise<void> {
85 | await this.ruleActionLocator.nth(index).locator(locator).click();
> 86 | await this.getOptionLocator(selectValue).nth(0).click();
| ^
87 | }
88 |
89 | async insertCheckInActionValues(checkInValue: string, index: number): Promise<void> {
at ActionsDropdownComponent.dropdownSelection (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:86:53)
at ActionsDropdownComponent.insertAddAspectActionValues (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/actions-dropdown.component.ts:94:5)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/folder-rules/src/tests/create-rules.e2e.ts:231:5
|
[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
3) [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] › 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
3) [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
|
[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#L204
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-v7bgk' })
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
|
[List Views] › src/tests/empty-list.e2e.ts:108:9 › Empty list views › [C213169] empty Recent Files:
e2e/playwright/list-views/src/tests/empty-list.e2e.ts#L1
1) [List Views] › src/tests/empty-list.e2e.ts:108:9 › Empty list views › [C213169] empty Recent Files
Test timeout of 85000ms exceeded.
|
[List Views] › src/tests/empty-list.e2e.ts:108:9 › Empty list views › [C213169] empty Recent Files:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L318
1) [List Views] › src/tests/empty-list.e2e.ts:108:9 › Empty list views › [C213169] empty Recent Files
Error: locator.innerText: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable .adf-empty-content__title')
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:318
316 |
317 | async getEmptyStateTitle(): Promise<string> {
> 318 | return (await this.isEmpty()) ? this.emptyListTitle.innerText() : '';
| ^
319 | }
320 |
321 | async getEmptyStateSubtitle(): Promise<string> {
at DataTableComponent.getEmptyStateTitle (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:318:57)
at openEmptyTab (/home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/empty-list.e2e.ts:84:12)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/empty-list.e2e.ts:109:7
|
[List Views] › src/tests/favorites.e2e.ts:129:9 › Favorites Files › Regular user's Favorites files › [C280485] Location column redirect - file in site:
e2e/playwright/list-views/src/tests/favorites.e2e.ts#L1
2) [List Views] › src/tests/favorites.e2e.ts:129:9 › Favorites Files › Regular user's Favorites files › [C280485] Location column redirect - file in site
Test timeout of 85000ms exceeded.
|
[List Views] › src/tests/favorites.e2e.ts:129:9 › Favorites Files › Regular user's Favorites files › [C280485] Location column redirect - file in site:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L291
2) [List Views] › src/tests/favorites.e2e.ts:129:9 › Favorites Files › Regular user's Favorites files › [C280485] Location column redirect - file in site
Error: locator.click: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable adf-datatable-row').filter({ hasText: 'file1-7gnxw.txt' }).locator('.aca-location-link')
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:291
289 |
290 | async clickItemLocation(name: string): Promise<void> {
> 291 | await this.getItemLocationEl(name).click();
| ^
292 | }
293 |
294 | 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:291:40)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/favorites.e2e.ts:130:36
|
[List Views] › src/tests/file-libraries.e2e.ts:143:9 › File Libraries › Favorite Libraries › [C289893] has the correct columns:
e2e/playwright/list-views/src/tests/file-libraries.e2e.ts#L1
3) [List Views] › src/tests/file-libraries.e2e.ts:143:9 › File Libraries › Favorite Libraries › [C289893] has the correct columns
Test timeout of 85000ms exceeded.
|
[List Views] › src/tests/file-libraries.e2e.ts:143:9 › File Libraries › Favorite Libraries › [C289893] has the correct columns:
projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts#L267
3) [List Views] › src/tests/file-libraries.e2e.ts:143:9 › File Libraries › Favorite Libraries › [C289893] has the correct columns
Error: locator.waitFor: Test timeout of 85000ms exceeded.
Call log:
- waiting for locator('adf-datatable .adf-datatable-row .adf-datatable-cell-header .adf-datatable-cell-value').first()
at ../../../projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:267
265 | async getColumnHeaders(): Promise<Array<string>> {
266 | const columnNameLocator = this.columnHeaders;
> 267 | await this.columnHeaders.nth(0).waitFor({ state: 'attached' });
| ^
268 | return columnNameLocator.allTextContents();
269 | }
270 |
at DataTableComponent.getColumnHeaders (/home/runner/work/alfresco-content-app/alfresco-content-app/projects/aca-playwright-shared/src/page-objects/components/dataTable/data-table.component.ts:267:37)
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/file-libraries.e2e.ts:145:68
|
[List Views] › src/tests/permissions.e2e.ts:169:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213178] on Recent Files:
e2e/playwright/list-views/src/tests/permissions.e2e.ts#L171
4) [List Views] › src/tests/permissions.e2e.ts:169:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213178] on Recent Files
Error: Incorrect number of items
expect(received).toBe(expected) // Object.is equality
Expected: 1
Received: 2
169 | test('[C213178] on Recent Files', async ({ recentFilesPage }) => {
170 | await recentFilesPage.navigate();
> 171 | expect(await recentFilesPage.dataTable.getRowsCount(), 'Incorrect number of items').toBe(1);
| ^
172 | expect(await recentFilesPage.dataTable.getItemLocationText(fileName)).toEqual('Unknown');
173 | });
174 |
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/list-views/src/tests/permissions.e2e.ts:171:91
|
[List Views] › src/tests/permissions.e2e.ts:181:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213668] on Shared Files:
e2e/playwright/list-views/src/tests/permissions.e2e.ts#L1
5) [List Views] › src/tests/permissions.e2e.ts:181:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213668] on Shared Files
Error: {"error":{"errorKey":"Person 'userPermissions-1a933' already exists.","statusCode":409,"briefSummary":"09243065 Person 'userPermissions-1a933' 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":"5f45a1c9-9cff-40d6-85a1-c99cff70d67e"}}
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)
|
[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-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results:
e2e/playwright/search/src/tests/search-highlighting.e2e.ts#L77
2) [Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
Error: expect(received).toBeTruthy()
Received: false
75 | test('[XAT-17121] Matching phrases should be highlighted in the file content for search results', async ({ searchPage }) => {
76 | await searchPage.searchWithin(fileContent, 'files');
> 77 | expect(await searchPage.dataTable.hasHighlightedText('content')).toBeTruthy();
| ^
78 | expect(await searchPage.dataTable.hasHighlightedText('name')).toBeFalsy();
79 | });
80 | });
at /home/runner/work/alfresco-content-app/alfresco-content-app/e2e/playwright/search/src/tests/search-highlighting.e2e.ts:77:70
|
[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
3) [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-16v39-file-1.jpg"
Received string: " Select file search-sort-16v39-file-2.pdf ( search sort title )search-sort-${random}-fileCompany Home › User Homes › user1-16v39 › parent-16v392.96 KB less than a minute ago user2-16v39 user2-16v39 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
|
Slow Test:
[Viewer] › src/tests/viewer-useraction.e2e.ts#L1
[Viewer] › src/tests/viewer-useraction.e2e.ts took 23.3s
|
Slow Test:
[Info Drawer] › src/tests/general.e2e.ts#L1
[Info Drawer] › src/tests/general.e2e.ts took 24.7s
|
Slow Test:
[Folder Rules] › src/tests/delete-view-rules.e2e.ts#L1
[Folder Rules] › src/tests/delete-view-rules.e2e.ts took 1.5m
|
Slow Test:
[Search] › src/tests/search-filters-general.e2e.ts#L1
[Search] › src/tests/search-filters-general.e2e.ts took 29.1s
|
🎭 Playwright Run Summary
6 passed (23.4s)
|
🎭 Playwright Run Summary
11 passed (1.2m)
|
🎭 Playwright Run Summary
16 passed (1.6m)
|
🎭 Playwright Run Summary
9 passed (1.3m)
|
🎭 Playwright Run Summary
15 passed (2.1m)
|
🎭 Playwright Run Summary
1 flaky
[Create Actions] › src/tests/create-library.e2e.ts:117:9 › Create Libraries › On My Libraries dataTable › [C280025] Create a public library
19 passed (2.0m)
|
🎭 Playwright Run Summary
11 passed (2.7m)
|
🎭 Playwright Run Summary
29 passed (2.9m)
|
🎭 Playwright Run Summary
23 passed (3.3m)
|
🎭 Playwright Run Summary
34 passed (3.7m)
|
🎭 Playwright Run Summary
2 flaky
[Info Drawer] › src/tests/comments.e2e.ts:90:7 › Info Drawer - Comments › [C299189] from Shared Files - Comments are displayed ordered by created date in descending order
[Info Drawer] › src/tests/library-properties.e2e.ts:184:7 › Library properties › [C289343] Site description too long
16 passed (3.8m)
|
🎭 Playwright Run Summary
19 passed (4.4m)
|
🎭 Playwright Run Summary
3 flaky
[Folder Rules] › src/tests/create-rules.e2e.ts:158:7 › Folder Rules Actions › [XAT-889] Create a rule which runs when items are deleted or leave a folder
[Folder Rules] › src/tests/create-rules.e2e.ts:226:7 › Folder Rules Actions › [XAT-893] Removing values from required fields should restore disabled state for Create button
[Folder Rules] › src/tests/update-rules.e2e.ts:148:7 › Rules - Manage Rules › [XAT-903] [XAT-904] Edit existing conditions
21 passed (5.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
64 passed (6.4m)
|
🎭 Playwright Run Summary
5 flaky
[List Views] › src/tests/empty-list.e2e.ts:108:9 › Empty list views › [C213169] empty Recent Files
[List Views] › src/tests/favorites.e2e.ts:129:9 › Favorites Files › Regular user's Favorites files › [C280485] Location column redirect - file in site
[List Views] › src/tests/file-libraries.e2e.ts:143:9 › File Libraries › Favorite Libraries › [C289893] has the correct columns
[List Views] › src/tests/permissions.e2e.ts:169:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213178] on Recent Files
[List Views] › src/tests/permissions.e2e.ts:181:9 › Special permissions › Location column is empty if user doesn't have permissions on the file's parent folder › [C213668] on Shared Files
63 passed (6.9m)
|
🎭 Playwright Run Summary
3 flaky
[Search] › src/tests/search-filters-logic.e2e.ts:146:7 › Search - Filters - Logic › [C699504] Filter with all options
[Search] › src/tests/search-highlighting.e2e.ts:75:7 › Search Highlighting › [XAT-17121] Matching phrases should be highlighted in the file content for search results
[Search] › src/tests/search-sorting.e2e.ts:162:9 › Search sorting › [C277736] Sort by Modified date
46 passed (6.9m)
|