Skip to content

Commit 96f4915

Browse files
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.
1 parent 7265b2f commit 96f4915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui-tests/tests/widgets.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test.describe('Widget Visual Regression', () => {
4040

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

0 commit comments

Comments
 (0)