diff --git a/test/unit/specs/fields/fieldNumber.spec.js b/test/unit/specs/fields/fieldNumber.spec.js index 8dd2e275..32ddc54a 100644 --- a/test/unit/specs/fields/fieldNumber.spec.js +++ b/test/unit/specs/fields/fieldNumber.spec.js @@ -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"); diff --git a/test/unit/specs/fields/fieldPassword.spec.js b/test/unit/specs/fields/fieldPassword.spec.js index b1823997..e92f4e35 100644 --- a/test/unit/specs/fields/fieldPassword.spec.js +++ b/test/unit/specs/fields/fieldPassword.spec.js @@ -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; }); diff --git a/test/unit/specs/fields/fieldRange.spec.js b/test/unit/specs/fields/fieldRange.spec.js index 2036b493..cc4c29b1 100644 --- a/test/unit/specs/fields/fieldRange.spec.js +++ b/test/unit/specs/fields/fieldRange.spec.js @@ -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;