This thread is trying to answer question "Is there any way to stop generating trace.zip files inside the test-results folder and to stop creating the 'test-results' folder?"
I run with: npx playwright test --ui
export default defineConfig({ testDir: './playwright', fullyParallel: true, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: 'html', use: { trace: 'off', }, projects: [ { name: 'chromium', use: { ...devices['Desktop Chrome'] }, }, ], });
Rayrun is a community for QA engineers. I am constantly looking for new ways to add value to people learning Playwright and other browser automation frameworks. If you have feedback, email [email protected].