File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ describe('MdGridList', () => {
143
143
} ) ;
144
144
} ) ) ;
145
145
146
- it ( 'should default gutter size to 1px' , async ( ( ) => {
146
+ fit ( 'should default gutter size to 1px' , async ( ( ) => {
147
147
var template = `
148
148
<div style="width:200px">
149
149
<md-grid-list cols="2" rowHeight="100px">
@@ -157,6 +157,9 @@ describe('MdGridList', () => {
157
157
fixture . detectChanges ( ) ;
158
158
fixture . whenStable ( ) . then ( ( ) => {
159
159
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 ] ) ) ;
160
163
161
164
// check horizontal gutter
162
165
expect ( getProp ( tiles [ 0 ] , 'width' ) ) . toBe ( '99.5px' ) ;
You can’t perform that action at this time.
0 commit comments