chore: add playwright-report to gitignore created by scaffolding (#10028)

Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Andrey Lushnikov 2021-11-03 17:12:52 -07:00 committed by GitHub
parent 583944f43e
commit 16b9ada8c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,6 +139,7 @@ export class Generator {
if (!gitIgnore.includes('node_modules'))
gitIgnore += 'node_modules/\n';
gitIgnore += 'test-results/\n';
gitIgnore += 'playwright-report/\n';
fs.writeFileSync(gitIgnorePath, gitIgnore);
}