Skip to content

Commit fdd6b16

Browse files
committed
debugging ios8
1 parent 5b0ad1d commit fdd6b16

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/grid-list/grid-list.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ describe('MdGridList', () => {
143143
});
144144
}));
145145

146-
it('should default gutter size to 1px', async(() => {
146+
fit('should default gutter size to 1px', async(() => {
147147
var template = `
148148
<div style="width:200px">
149149
<md-grid-list cols="2" rowHeight="100px">
@@ -157,6 +157,9 @@ describe('MdGridList', () => {
157157
fixture.detectChanges();
158158
fixture.whenStable().then(() => {
159159
let tiles = fixture.debugElement.queryAll(By.css('md-grid-tile'));
160+
console.log(getComputedStyle(tiles[0]));
161+
console.log(getComputedStyle(tiles[1]));
162+
console.log(getComputedStyle(tiles[2]));
160163

161164
// check horizontal gutter
162165
expect(getProp(tiles[0], 'width')).toBe('99.5px');

0 commit comments

Comments
 (0)