We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f477aa commit 7690a5dCopy full SHA for 7690a5d
core/scripts/testing/e2e-script.mjs
@@ -12,6 +12,7 @@ import {
12
isCancel,
13
cancel,
14
text,
15
+ log,
16
} from '@clack/prompts';
17
import { exec } from 'child_process';
18
import fs from 'node:fs';
@@ -218,6 +219,9 @@ async function main() {
218
219
await execAsync('npx playwright show-report').catch(() => {
220
console.error('Error: Failed to open the Playwright report or user closed the report');
221
});
222
+ } else {
223
+ // Inform the user that the Playwright report can be opened by running the following command.
224
+ log.info('You can open the Playwright report by running the following command: npx playwright show-report');
225
}
226
227
outro("You're all set!");
0 commit comments