Browse Source

col test improve

baiyaaaaa 8 years ago
parent
commit
8e68e82e25
1 changed files with 13 additions and 0 deletions
  1. 13 0
      test/unit/specs/col.spec.js

+ 13 - 0
test/unit/specs/col.spec.js

@@ -41,4 +41,17 @@ describe('Col', () => {
     let colElm = vm.$el;
     expect(colElm.classList.contains('el-col-push-3')).to.be.true;
   });
+  it('gutter', () => {
+    const vm = createVue({
+      template: `
+        <el-row :gutter="20">
+          <el-col :span="12" ref="col">
+          </el-col>
+        </el-row>
+      `
+    }, true);
+    let colElm = vm.$refs.col.$el;
+    expect(colElm.style.paddingLeft === '10px').to.be.true;
+    expect(colElm.style.paddingRight === '10px').to.be.true;
+  });
 });