From de8f48cff0c26d87c67a6a5eb8018adcd76b478e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=9Awiderski?= Date: Thu, 3 Oct 2024 12:30:19 +0200 Subject: [PATCH] [ACS-8866] [E2E] Added UI, Debug and Headed modes to NX console (#4160) --- e2e/playwright/authentication/project.json | 9 +++++++++ e2e/playwright/copy-move-actions/project.json | 9 +++++++++ e2e/playwright/create-actions/project.json | 9 +++++++++ e2e/playwright/delete-actions/project.json | 9 +++++++++ e2e/playwright/edit-actions/project.json | 9 +++++++++ e2e/playwright/favorite-actions/project.json | 9 +++++++++ e2e/playwright/folder-rules/project.json | 9 +++++++++ e2e/playwright/info-drawer/project.json | 9 +++++++++ e2e/playwright/library-actions/project.json | 9 +++++++++ e2e/playwright/list-views/project.json | 9 +++++++++ e2e/playwright/navigation/project.json | 9 +++++++++ e2e/playwright/pagination/project.json | 9 +++++++++ e2e/playwright/search/project.json | 9 +++++++++ e2e/playwright/share-action/project.json | 9 +++++++++ .../special-permissions-actions-available/project.json | 9 +++++++++ e2e/playwright/upload-download-actions/project.json | 9 +++++++++ e2e/playwright/viewer/project.json | 9 +++++++++ 17 files changed, 153 insertions(+) diff --git a/e2e/playwright/authentication/project.json b/e2e/playwright/authentication/project.json index 4996e85772..c8aa113d4e 100644 --- a/e2e/playwright/authentication/project.json +++ b/e2e/playwright/authentication/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/copy-move-actions/project.json b/e2e/playwright/copy-move-actions/project.json index 227894945c..be79ff5644 100644 --- a/e2e/playwright/copy-move-actions/project.json +++ b/e2e/playwright/copy-move-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/create-actions/project.json b/e2e/playwright/create-actions/project.json index c6d33d477f..041e0b8737 100644 --- a/e2e/playwright/create-actions/project.json +++ b/e2e/playwright/create-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/delete-actions/project.json b/e2e/playwright/delete-actions/project.json index 0e03b9f29e..7808d6bb57 100644 --- a/e2e/playwright/delete-actions/project.json +++ b/e2e/playwright/delete-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/edit-actions/project.json b/e2e/playwright/edit-actions/project.json index ca4e9de105..ab91d310b8 100644 --- a/e2e/playwright/edit-actions/project.json +++ b/e2e/playwright/edit-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/favorite-actions/project.json b/e2e/playwright/favorite-actions/project.json index 20fec7c673..d66aed7bfd 100644 --- a/e2e/playwright/favorite-actions/project.json +++ b/e2e/playwright/favorite-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/folder-rules/project.json b/e2e/playwright/folder-rules/project.json index 72344c65d0..eac5b806f9 100644 --- a/e2e/playwright/folder-rules/project.json +++ b/e2e/playwright/folder-rules/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/info-drawer/project.json b/e2e/playwright/info-drawer/project.json index 39fbbd7b07..5ca7aba729 100644 --- a/e2e/playwright/info-drawer/project.json +++ b/e2e/playwright/info-drawer/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/library-actions/project.json b/e2e/playwright/library-actions/project.json index 3bb8d3653e..d14d708dc9 100644 --- a/e2e/playwright/library-actions/project.json +++ b/e2e/playwright/library-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/list-views/project.json b/e2e/playwright/list-views/project.json index a55e67f9fd..8af5fb8c20 100644 --- a/e2e/playwright/list-views/project.json +++ b/e2e/playwright/list-views/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/navigation/project.json b/e2e/playwright/navigation/project.json index 1a0f3767d5..31a5a072d5 100644 --- a/e2e/playwright/navigation/project.json +++ b/e2e/playwright/navigation/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/pagination/project.json b/e2e/playwright/pagination/project.json index 6d28ddc609..5a3da0c283 100644 --- a/e2e/playwright/pagination/project.json +++ b/e2e/playwright/pagination/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/search/project.json b/e2e/playwright/search/project.json index d53fd8db6e..2f4222a886 100644 --- a/e2e/playwright/search/project.json +++ b/e2e/playwright/search/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/share-action/project.json b/e2e/playwright/share-action/project.json index 2dd16e9b54..de869a6807 100644 --- a/e2e/playwright/share-action/project.json +++ b/e2e/playwright/share-action/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/special-permissions-actions-available/project.json b/e2e/playwright/special-permissions-actions-available/project.json index dfd6cbb985..2853baa05f 100644 --- a/e2e/playwright/special-permissions-actions-available/project.json +++ b/e2e/playwright/special-permissions-actions-available/project.json @@ -14,6 +14,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/upload-download-actions/project.json b/e2e/playwright/upload-download-actions/project.json index 5f74836e3c..9aa1d487d7 100644 --- a/e2e/playwright/upload-download-actions/project.json +++ b/e2e/playwright/upload-download-actions/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } }, diff --git a/e2e/playwright/viewer/project.json b/e2e/playwright/viewer/project.json index 647fa8e1e1..c7f20cde53 100644 --- a/e2e/playwright/viewer/project.json +++ b/e2e/playwright/viewer/project.json @@ -12,6 +12,15 @@ "configurations": { "production": { "devServerTarget": "content-ce:serve:production" + }, + "ui": { + "args": ["--ui"] + }, + "debug": { + "args": ["--debug"] + }, + "headed": { + "args": ["--headed"] } } },