Skip to content

Commit

Permalink
chore: fix PR check pipeline to fail on screenshot comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Jan 7, 2025
1 parent 1176b16 commit e05cf56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/src/playwright.config.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const PLAYWRIGHT_BASE_CONFIG = {
// if you want to update snapshots for your branch, use the corresponding GitHub action:
// https://github.com/SchwarzIT/onyx/actions/workflows/playwright-screenshots.yml
ignoreSnapshots: !process.env.CI,
updateSnapshots: process.env.PW_UPDATE_SNAPSHOTS ? "all" : "none",
updateSnapshots: process.env.PW_UPDATE_SNAPSHOTS === "true" ? "all" : "none",

/**
* SHARDING
Expand Down

0 comments on commit e05cf56

Please sign in to comment.