[ACS-11871] e2e test for link document (#5281)

* [ACS-11871] e2e test for link document

* [ACS-11871] fix test case name and improve test with icon check

* [ACS-11871] add CI run for e2e and comment fix

* [ACS-11871] add CI run for e2e

* [ACS-11871] add CI run for e2e

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* add fix for comment pr review locator and try catch

* [ACS-11871] test fix, remove icon logic to very in manual test

* [ACS-11871] e2e test for link document

* [ACS-11871] fix test case name and improve test with icon check

* [ACS-11871] add CI run for e2e and comment fix

* [ACS-11871] add CI run for e2e

* [ACS-11871] add CI run for e2e

* add fix for comment pr review locator and try catch

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* [ACS-11871] test fix, remove icon logic to very in manual test

* delete link test fix

* fix delete test

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Akash Rathod
2026-07-21 15:47:25 +02:00
committed by GitHub
co-authored by Copilot Autofix powered by AI
parent dd2d1f8711
commit ea8eab3986
12 changed files with 932 additions and 0 deletions
@@ -0,0 +1,131 @@
{
"name": "create-link-actions-e2e",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "e2e/playwright/create-link-actions/src",
"projectType": "application",
"targets": {
"e2e": {
"executor": "nx:run-commands",
"options": {
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"configurations": {
"ui": {
"args": [
"--ui"
]
},
"debug": {
"args": [
"--debug"
]
},
"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-link-actions/playwright.config.ts"
]
},
"webkit-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"firefox-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"chrome-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
},
"args": [
"--headed"
],
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"msedge-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/create-link-actions/playwright.config.ts"
]
}
}
}
}
}