[ACS-12057] stabilize multibrowser e2es pt1 - add multibrowser targets for local runs (#5244)

* [ACS-12057] stabilize multibrowser e2es pt1

* [ACS-12057] copilot review fixes 1

* [ACS-12057] added headless to all
This commit is contained in:
Adam Świderski
2026-06-25 10:25:05 +02:00
committed by GitHub
parent b2149441f0
commit 767efaf32c
21 changed files with 1420 additions and 144 deletions
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/authentication/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/authentication/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/copy-move-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/create-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/delete-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/edit-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/favorite-actions/playwright.config.ts"
]
}
}
}
}
}
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-information-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/info-drawer/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/library-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/library-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/list-views/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/list-views/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/navigation/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/navigation/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/pagination/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/pagination/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/search/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/search/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/share-action/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/share-action/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"
]
}
}
}
}
}
@@ -7,27 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/special-permissions-actions-available/playwright.config.ts"
]
}
}
}
}
}
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/upload-download-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
]
}
}
}
}
}
+71 -7
View File
@@ -7,25 +7,89 @@
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": ["playwright test --config=e2e/playwright/viewer/playwright.config.ts"]
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
},
"configurations": {
"production": {
"devServerTarget": "content-ce:serve:production"
},
"ui": {
"args": ["--ui"]
"args": [
"--ui"
]
},
"debug": {
"args": ["--debug"]
"args": [
"--debug"
]
},
"headed": {
"args": ["--headed"]
"args": [
"--headed"
]
}
}
},
"lint": {
"executor": "@angular-eslint/builder:lint"
},
"e2e-multibrowser": {
"executor": "nx:run-commands",
"options": {},
"configurations": {
"webkit-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/viewer/playwright.config.ts"
]
}
}
}
}
}
@@ -35,8 +35,6 @@ import {
logger
} from '@alfresco/aca-playwright-shared';
test.use({ channel: 'chrome' });
test.describe('viewer file types', () => {
const randomString = Utils.random();
const username = `user-${randomString}`;