Skip to content

Commit c645cea

Browse files
author
Lionel Bijaoui
committed
fix: change test depending on changes
1 parent 5745318 commit c645cea

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

test/unit/specs/fields/fieldNumber.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ describe("fieldNumber.vue", function() {
3939
expect(input).to.be.defined;
4040
expect(input.type).to.be.equal("number");
4141
expect(input.classList.contains("form-control")).to.be.true;
42-
expect(input.placeholder).to.be.equal(schema.placeholder);
4342
expect(input.readOnly).to.be.false;
4443
expect(input.min).to.be.equal("18");
4544
expect(input.max).to.be.equal("100");

test/unit/specs/fields/fieldPassword.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ describe("fieldPassword.vue", function() {
3838
expect(input).to.be.defined;
3939
expect(input.type).to.be.equal("password");
4040
expect(input.classList.contains("form-control")).to.be.true;
41-
expect(input.placeholder).to.be.equal(schema.placeholder);
4241
expect(input.readOnly).to.be.false;
4342
expect(input.disabled).to.be.false;
4443
});

test/unit/specs/fields/fieldRange.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ describe("fieldRange.vue", function() {
3838
expect(input).to.be.defined;
3939
expect(input.type).to.be.equal("range");
4040
expect(input.classList.contains("form-control")).to.be.true;
41-
expect(input.placeholder).to.be.equal(schema.placeholder);
4241
expect(input.min).to.be.equal("1");
4342
expect(input.max).to.be.equal("10");
4443
expect(input.disabled).to.be.false;

0 commit comments

Comments
 (0)