Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 9689207

Browse files
TeamopThomasBurleson
authored andcommitted
test(gap): fix test issue
*grid-gap becomes gap from chrome v66
1 parent b8c86be commit 9689207

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/lib/grid/gap/gap.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ describe('grid gap directive', () => {
104104
'grid-row-gap': '10px',
105105
'grid-column-gap': '15px',
106106
}, styler);
107+
} else if (platform.BLINK) {
108+
expectNativeEl(fixture).toHaveStyle({
109+
'display': 'grid',
110+
'gap': '10px 15px',
111+
}, styler);
107112
} else {
108113
expectNativeEl(fixture).toHaveStyle({
109114
'display': 'grid',

0 commit comments

Comments
 (0)