mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACS-10876] ACA e2e playwright automated test for Firefox Edge and Safari (#4952)
* [ACS-10876] playwright config changes to support multi browser * [ACS-10876]workflow temp changes to enable all browser run * [ACS-10876]workflow issue fix * [ACS-10876]workflow issue fix * [ACS-10876]workflow issue fix * [ACS-10876]workflow issue fix * [ACS-10876]fix report issue and webkit dep issue * [ACS-10876]fix report issue and exclude test logic * [ACS-10876]playwright browser setup change * [ACS-10876]small fixes * [ACS-10876]restore only run on pull request schedule job * [ACS-10876]sonar cloud issue fix * [ACS-10876]make chromium for pr run and chrome browser for scheduled run * [ACS-10876]sonar cloud issue fix * [ACS-10876]sonar cloud issue fix and small improvement
This commit is contained in:
@@ -1,3 +1,28 @@
|
||||
{
|
||||
"XAT-4525": "https://hyland.atlassian.net/browse/ACS-9741"
|
||||
"all": {
|
||||
"XAT-4525": "https://hyland.atlassian.net/browse/ACS-9741"
|
||||
},
|
||||
"firefox": {
|
||||
"XAT-4455": "https://hyland.atlassian.net/browse/ACS-10917"
|
||||
},
|
||||
"webkit": {
|
||||
"XAT-4459": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4460": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4461": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4462": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4452": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4464": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4441": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-5612": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4448": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4449": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4450": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4437": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4438": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4439": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4526": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4471": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4470": "https://hyland.atlassian.net/browse/ACS-10917",
|
||||
"XAT-4472": "https://hyland.atlassian.net/browse/ACS-10917"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,22 +23,14 @@
|
||||
*/
|
||||
|
||||
import { PlaywrightTestConfig } from '@playwright/test';
|
||||
import { CustomConfig, getGlobalConfig, getExcludedTestsRegExpArray } from '@alfresco/aca-playwright-shared';
|
||||
import { CustomConfig, getGlobalConfig, getExcludedTestsRegExpArray, createSuiteProjects } from '@alfresco/aca-playwright-shared';
|
||||
import EXCLUDED_JSON from './exclude.tests.json';
|
||||
|
||||
const config: PlaywrightTestConfig<CustomConfig> = {
|
||||
...getGlobalConfig,
|
||||
|
||||
grepInvert: getExcludedTestsRegExpArray(EXCLUDED_JSON, 'List Views'),
|
||||
projects: [
|
||||
{
|
||||
name: 'List Views',
|
||||
testDir: './src/tests',
|
||||
use: {
|
||||
users: ['admin']
|
||||
}
|
||||
}
|
||||
]
|
||||
projects: createSuiteProjects('List Views', './src/tests', { users: ['admin'] })
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user