Skip to content

Commit 0096374

Browse files
authored
test: add workaround to fix failing grid-pro custom-field test (#9673)
1 parent 9045fb4 commit 0096374

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/integration/grid-pro-custom-editor.test.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ describe('grid-pro custom editor', () => {
2222
</vaadin-gri-pro>
2323
`);
2424

25+
// FIXME: remove when switching to base styles.
26+
// Ensure grid cells have some height.
27+
fixtureSync(`
28+
<style>
29+
vaadin-grid-pro::part(cell) {
30+
min-height: 36px;
31+
}
32+
</style>
33+
`);
34+
2535
const column = grid.querySelector(`[path="${path}"]`);
2636
switch (path) {
2737
case 'date':

0 commit comments

Comments
 (0)