Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: restoring widgets from saved state is broken since v8 in Lab #3866

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: do not fail immediately on a screenshot mismatch
This will make the galata report all the mismatches at the end of the
test run, instead of failing immediately on the first mismatch.
maartenbreddels committed Feb 8, 2024
commit 96f4915529934f74261f613522f8821df6a49682
2 changes: 1 addition & 1 deletion ui-tests/tests/widgets.test.ts
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ test.describe('Widget Visual Regression', () => {

for (let i = 0; i < cellCount; i++) {
const image = `widgets-cell-${i}.png`;
expect(captures[i]).toMatchSnapshot(image);
expect.soft(captures[i]).toMatchSnapshot(image);
}
});
});