Skip to content

Commit

Permalink
ci(gui): always keep video recordings of e2e runs on release related …
Browse files Browse the repository at this point in the history
…branches

- to ease checking OS setup functionality

Signed-off-by: Manuel Zedel <[email protected]>
  • Loading branch information
mzedel committed Jan 9, 2025
1 parent 3909398 commit 904f587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/tests/e2e_tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const options: PlaywrightTestConfig = {
...contextArgs,
contextOptions: contextArgs,
screenshot: 'only-on-failure',
video: 'retain-on-failure',
video: process.env.CI_COMMIT_REF_PROTECTED ? 'on' : 'retain-on-failure',
// headless: false,
launchOptions,
trace: process.env.BROWSER == 'webkit' ? 'retain-on-failure' : 'off'
Expand Down

0 comments on commit 904f587

Please sign in to comment.