Skip to content

Commit b28509e

Browse files
committed
disable grid borders in crud test
1 parent de73180 commit b28509e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

packages/crud/test/a11y.test.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ describe('a11y', () => {
1313
await setViewport({ width: 1024, height: 768 });
1414
});
1515

16+
beforeEach(() => {
17+
fixtureSync(`
18+
<style>
19+
:root {
20+
--vaadin-grid-row-border-width: 0px;
21+
}
22+
</style>
23+
`);
24+
});
25+
1626
function focusRestorationTests(testId, createFixture) {
1727
describe(`focus restoration - ${testId}`, () => {
1828
let grid, form, dialog, newButton, saveButton, cancelButton, editButtons;

0 commit comments

Comments
 (0)