mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACS-12069] Stabilize multibrowser test runs pt2 -> tests include + small fixes + multibrowser workflow manual trigger added (#5246)
* [ACS-12069] tests include + small fixes * [ACS-12069] XAT-4526 fixes * [ACS12069] changed toBe to toContain for getSortedColumnHeaderText usage * [ACS-12069] XAT-4523 improvement * [ACS-12069] sort list fixes
This commit is contained in:
@@ -1,35 +1,5 @@
|
||||
{
|
||||
"all": {
|
||||
"XAT-19377": "https://hyland.atlassian.net/browse/ACS-11868"
|
||||
},
|
||||
"firefox": {
|
||||
"XAT-17177": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17178": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17179": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17180": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17183": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17184": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17185": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5485": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5486": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5498": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5504": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5507": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5510": "https://hyland.atlassian.net/browse/ACS-10917"
|
||||
},
|
||||
"webkit": {
|
||||
"XAT-17177": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17178": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17179": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17180": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17183": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17184": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-17185": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5485": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5486": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5498": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5504": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5507": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5510": "https://hyland.atlassian.net/browse/ACS-10917"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -113,7 +113,7 @@ test.describe('Version actions', () => {
|
||||
|
||||
test('[XAT-5498] Should be possible to download a previous document version - Personal Files', async ({ personalFiles }) => {
|
||||
const [download] = await Promise.all([personalFiles.page.waitForEvent('download'), await personalFiles.viewer.downloadButton.click()]);
|
||||
expect(download.suggestedFilename()).toBe(filenameBeforeUpdate);
|
||||
expect(download.suggestedFilename()).toContain(filenameBeforeUpdate);
|
||||
});
|
||||
|
||||
test('[XAT-19377] Can view previous version of a document after a viewer is opened from Manage Versions dialog', async ({ personalFiles }) => {
|
||||
@@ -179,7 +179,7 @@ test.describe('Version actions', () => {
|
||||
|
||||
test('[XAT-5504] Should be possible to download a previous document version - Favorites', async ({ favoritePage }) => {
|
||||
const [download] = await Promise.all([favoritePage.page.waitForEvent('download'), await favoritePage.viewer.downloadButton.click()]);
|
||||
expect(download.suggestedFilename()).toBe(filenameBeforeUpdate);
|
||||
expect(download.suggestedFilename()).toContain(filenameBeforeUpdate);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -204,7 +204,7 @@ test.describe('Version actions', () => {
|
||||
|
||||
test('[XAT-5507] Should be possible to download a previous document version - Shared Files', async ({ sharedPage }) => {
|
||||
const [download] = await Promise.all([sharedPage.page.waitForEvent('download'), await sharedPage.viewer.downloadButton.click()]);
|
||||
expect(download.suggestedFilename()).toBe(filenameBeforeUpdate);
|
||||
expect(download.suggestedFilename()).toContain(filenameBeforeUpdate);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -229,7 +229,7 @@ test.describe('Version actions', () => {
|
||||
|
||||
test('[XAT-5510] Should be possible to download a previous document version - Search Results', async ({ searchPage }) => {
|
||||
const [download] = await Promise.all([searchPage.page.waitForEvent('download'), await searchPage.viewer.downloadButton.click()]);
|
||||
expect(download.suggestedFilename()).toBe(filenameBeforeUpdate);
|
||||
expect(download.suggestedFilename()).toContain(filenameBeforeUpdate);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user