We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab59a4d commit e7ae777Copy full SHA for e7ae777
1 file changed
test/visual/basicGrid.test.tsx
@@ -52,3 +52,9 @@ test('basic grid', async () => {
52
53
await expect(getGrid()).toMatchScreenshot('basic-grid');
54
});
55
+
56
+test('color', async () => {
57
+ await page.render(<div style={{ color: 'red' }}>color test</div>);
58
59
+ await expect(page.getByText('color test')).toMatchScreenshot('color');
60
+});
0 commit comments