Skip to content

Commit

Permalink
remove forced recording and tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexdev8 committed Feb 14, 2024
1 parent 228e05d commit 9dc2b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const config: PlaywrightTestConfig = {
],
use: {
screenshot: 'only-on-failure',
video: process.env.CI && false ? 'retain-on-failure' : 'on',
trace: process.env.CI && false ? 'retain-on-failure' : 'on',
video: process.env.CI ? 'retain-on-failure' : 'on',
trace: process.env.CI ? 'retain-on-failure' : 'on',
contextOptions: {
recordVideo: { dir: "tests/results/videos"}
}
Expand Down

0 comments on commit 9dc2b0e

Please sign in to comment.