Skip to content

Commit

Permalink
fix: change test depending on changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Bijaoui committed Sep 1, 2016
1 parent 5745318 commit c645cea
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion test/unit/specs/fields/fieldNumber.spec.js
Expand Up @@ -39,7 +39,6 @@ describe("fieldNumber.vue", function() {
expect(input).to.be.defined;
expect(input.type).to.be.equal("number");
expect(input.classList.contains("form-control")).to.be.true;
expect(input.placeholder).to.be.equal(schema.placeholder);
expect(input.readOnly).to.be.false;
expect(input.min).to.be.equal("18");
expect(input.max).to.be.equal("100");
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/fields/fieldPassword.spec.js
Expand Up @@ -38,7 +38,6 @@ describe("fieldPassword.vue", function() {
expect(input).to.be.defined;
expect(input.type).to.be.equal("password");
expect(input.classList.contains("form-control")).to.be.true;
expect(input.placeholder).to.be.equal(schema.placeholder);
expect(input.readOnly).to.be.false;
expect(input.disabled).to.be.false;
});
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/fields/fieldRange.spec.js
Expand Up @@ -38,7 +38,6 @@ describe("fieldRange.vue", function() {
expect(input).to.be.defined;
expect(input.type).to.be.equal("range");
expect(input.classList.contains("form-control")).to.be.true;
expect(input.placeholder).to.be.equal(schema.placeholder);
expect(input.min).to.be.equal("1");
expect(input.max).to.be.equal("10");
expect(input.disabled).to.be.false;
Expand Down

0 comments on commit c645cea

Please sign in to comment.