From 3a5a31d4a7ef9dc404940072ee68fac6dd03a3f4 Mon Sep 17 00:00:00 2001 From: depapp Date: Fri, 24 Mar 2023 16:18:59 +0700 Subject: [PATCH 1/2] add playwright UI mode command --- src/generator.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/generator.ts b/src/generator.ts index ab6bb54..0feb168 100644 --- a/src/generator.ts +++ b/src/generator.ts @@ -269,6 +269,9 @@ Inside that directory, you can run several commands: ${colors.cyan(packageManager.runPlaywrightTest())} Runs the end-to-end tests. + ${colors.cyan(packageManager.runPlaywrightTest('--ui'))} + Runs the tests in interactive UI mode. + ${colors.cyan(packageManager.runPlaywrightTest('--project=chromium'))} Runs the tests only on Desktop Chrome. From 7093adbb5003835788217e40c1b971bbcaea43ff Mon Sep 17 00:00:00 2001 From: depa panjie purnama Date: Fri, 24 Mar 2023 16:58:58 +0700 Subject: [PATCH 2/2] change wording Co-authored-by: Max Schmitt --- src/generator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generator.ts b/src/generator.ts index 0feb168..deac40d 100644 --- a/src/generator.ts +++ b/src/generator.ts @@ -270,7 +270,7 @@ Inside that directory, you can run several commands: Runs the end-to-end tests. ${colors.cyan(packageManager.runPlaywrightTest('--ui'))} - Runs the tests in interactive UI mode. + Starts the interactive UI mode. ${colors.cyan(packageManager.runPlaywrightTest('--project=chromium'))} Runs the tests only on Desktop Chrome.