chore(create-playwright): have better config defaults (#9362)

This commit is contained in:
Max Schmitt 2021-10-07 21:21:56 +02:00 committed by GitHub
parent fb001f608f
commit 8bfd63e4ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -11,8 +11,8 @@ const config = {
timeout: 30 * 1000,
// Test directory
testDir: path.join(__dirname, '{{testDir}}'),
// If a test fails, retry it additional 2 times
retries: 2,
// If a test fails on CI, retry it additional 2 times
retries: process.env.CI ? 2 : 0,
// Artifacts folder where screenshots, videos, and traces are stored.
outputDir: 'test-results/',
@ -26,7 +26,7 @@ const config = {
use: {
// Retry a test if its failing with enabled tracing. This allows you to analyse the DOM, console logs, network traffic etc.
// More information: https://playwright.dev/docs/trace-viewer
trace: 'retry-with-trace',
trace: 'on-first-retry',
// All available context options: https://playwright.dev/docs/api/class-browser#browser-new-context
contextOptions: {

View File

@ -7,8 +7,8 @@ const config: PlaywrightTestConfig = {
timeout: 30 * 1000,
// Test directory
testDir: path.join(__dirname, '{{testDir}}'),
// If a test fails, retry it additional 2 times
retries: 2,
// If a test fails on CI, retry it additional 2 times
retries: process.env.CI ? 2 : 0,
// Artifacts folder where screenshots, videos, and traces are stored.
outputDir: 'test-results/',
@ -22,7 +22,7 @@ const config: PlaywrightTestConfig = {
use: {
// Retry a test if its failing with enabled tracing. This allows you to analyse the DOM, console logs, network traffic etc.
// More information: https://playwright.dev/docs/trace-viewer
trace: 'retry-with-trace',
trace: 'on-first-retry',
// All available context options: https://playwright.dev/docs/api/class-browser#browser-new-context
contextOptions: {