chore: enable html report by default (#9639)

This commit is contained in:
Pavel Feldman 2021-10-19 20:31:59 -08:00 committed by GitHub
parent 4423de9996
commit 2b9d7815b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ const config: Config<CommonOptions & PlaywrightOptions> = {
reporter: process.env.CI ? [
[ 'dot' ],
[ 'json', { outputFile: path.join(outputDir, 'report.json') } ],
] : 'line',
] : 'html',
projects: [],
webServer: mode === 'service' ? {
command: 'npx playwright experimental-grid-server',