Merge pull request #19587 from storybookjs/tech/html-reporter-for-e2e-tests-locally

make the reporter dynamic
This commit is contained in:
Norbert de Langen 2022-10-23 13:58:37 +03:00 committed by GitHub
commit 8d95548ac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,8 +10,10 @@ export const e2eTests: Task = {
return false;
},
async run({ codeDir, junitFilename, template }, { dryRun, debug }) {
const reporter = process.env.CI ? 'junit' : 'html';
await exec(
'yarn playwright test --reporter=junit',
`yarn playwright test --reporter=${reporter}`,
{
env: {
STORYBOOK_URL: `http://localhost:${PORT}`,