mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
[ACS-12214] excluded flaky/unstable tests for multibrowser (#5275)
* [ACS-12214] excluded flaky/unstable tests for multibrowser * [ACS-12214] more excluded tests * [ACS-12214] more excluded tests 2 * [ACS-12214] added headless runs and suite retries * [ACS-12214] cron multibrowser 2 suite runs - other 1 suite runs
This commit is contained in:
@@ -12,6 +12,10 @@ inputs:
|
||||
artifact-name:
|
||||
description: Name of the artifact cache
|
||||
required: true
|
||||
suite-attempts:
|
||||
description: 'Maximum number of times to run the whole test suite (1 = no retry)'
|
||||
required: false
|
||||
default: '1'
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
@@ -33,6 +37,7 @@ runs:
|
||||
env:
|
||||
OPTIONS: ${{ inputs.options }}
|
||||
PLAYWRIGHT_BROWSER: ${{ env.PLAYWRIGHT_BROWSER || 'chromium' }}
|
||||
SUITE_ATTEMPTS: ${{ inputs.suite-attempts }}
|
||||
run: |
|
||||
# Only start local server if using localhost
|
||||
if [[ "${PLAYWRIGHT_E2E_HOST}" == "http://localhost"* ]]; then
|
||||
@@ -46,5 +51,14 @@ runs:
|
||||
done
|
||||
printf "\nApplication is ready.\n"
|
||||
|
||||
echo "Running playwright tests with options $OPTIONS on browser ${PLAYWRIGHT_BROWSER}"
|
||||
E2E_TARGET=$OPTIONS npm run ci:e2e
|
||||
for attempt in $(seq 1 "${SUITE_ATTEMPTS:-1}"); do
|
||||
echo "Running playwright tests with options $OPTIONS on browser ${PLAYWRIGHT_BROWSER} (suite attempt $attempt/${SUITE_ATTEMPTS:-1})"
|
||||
if E2E_TARGET=$OPTIONS npm run ci:e2e; then
|
||||
exit 0
|
||||
fi
|
||||
if [ "$attempt" -lt "${SUITE_ATTEMPTS:-1}" ]; then
|
||||
echo "Suite failed, retrying the whole suite..."
|
||||
fi
|
||||
done
|
||||
echo "Suite failed after ${SUITE_ATTEMPTS:-1} attempt(s)."
|
||||
exit 1
|
||||
|
||||
@@ -174,6 +174,7 @@ jobs:
|
||||
options: "${{ matrix.e2e-suites.name }}"
|
||||
artifact-name: "${{ matrix.browser }}-${{ matrix.e2e-suites.name }}"
|
||||
test-runner: playwright
|
||||
suite-attempts: '2'
|
||||
env:
|
||||
PLAYWRIGHT_BROWSER: ${{ matrix.browser }}
|
||||
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"all": {}
|
||||
"all": {},
|
||||
"webkit": {
|
||||
"XAT-888": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
{
|
||||
"all": {
|
||||
"XAT-4525": "https://hyland.atlassian.net/browse/ACS-9741"
|
||||
},
|
||||
"webkit": {
|
||||
"XAT-4455": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
},
|
||||
"firefox": {
|
||||
"XAT-4455": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"all": {
|
||||
"XAT-17697": "https://hyland.atlassian.net/browse/ACS-7464",
|
||||
"XAT-17121": "https://hyland.atlassian.net/browse/ACS-12165"
|
||||
"XAT-17121": "https://hyland.atlassian.net/browse/ACS-12165",
|
||||
"XAT-5567": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/search/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"all": {}
|
||||
"all": {
|
||||
"XAT-4845": "https://hyland.atlassian.net/browse/ACS-12214",
|
||||
"XAT-4835": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
{
|
||||
"all": {}
|
||||
"all": {},
|
||||
"webkit": {
|
||||
"XAT-5713": "https://hyland.atlassian.net/browse/ACS-12214"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
@@ -47,6 +47,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"webkit-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "webkit",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox"
|
||||
@@ -58,6 +67,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"firefox-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "firefox",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome"
|
||||
@@ -69,6 +87,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"chrome-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "chrome",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headed": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge"
|
||||
@@ -80,6 +107,15 @@
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"msedge-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "msedge",
|
||||
"PLAYWRIGHT_HEADLESS": "true"
|
||||
},
|
||||
"commands": [
|
||||
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
|
||||
]
|
||||
},
|
||||
"all-browsers-headless": {
|
||||
"env": {
|
||||
"PLAYWRIGHT_BROWSER": "all",
|
||||
|
||||
Reference in New Issue
Block a user