mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Update assertion to avoid browser differences
This commit is contained in:
parent
228a3ba1f0
commit
0436df964f
@ -28,9 +28,7 @@ test.describe('addon-a11y', () => {
|
||||
await page.getByRole('button', { name: 'Hide highlights' }).click();
|
||||
|
||||
// check that the highlight is not visible
|
||||
expect(await imageElement.evaluate((el) => getComputedStyle(el).outline)).toBe(
|
||||
'rgb(0, 0, 0) none 0px'
|
||||
);
|
||||
expect(await imageElement.evaluate((el) => getComputedStyle(el).outline)).toMatch(/0px/);
|
||||
});
|
||||
|
||||
test('should rerun a11y checks when clicking the rerun button', async ({ page }) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user