Skip to content

Commit

Permalink
amend textarea cy test to cope with padding top/bottom change
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwu9145 committed Aug 20, 2023
1 parent ad8b084 commit 0daf187
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('VTextarea', () => {
.type('Eos')
.should(el => expect(el.outerHeight()).to.equal(56))
.type('u')
.should(el => expect(el.outerHeight()).to.equal(78))
.should(el => expect(el.outerHeight()).to.equal(73))
})

it('should respect max-rows', () => {
Expand All @@ -27,8 +27,8 @@ describe('VTextarea', () => {
.should(el => expect(el.outerHeight()).to.equal(56))
.click()
.type('Lorem ipsum dolor sit amet consectetur adipisicing elit. ')
.should(el => expect(el.outerHeight()).to.equal(78))
.should(el => expect(el.outerHeight()).to.equal(73))
.type('Lorem ipsum dolor sit amet consectetur adipisicing elit. ')
.should(el => expect(el.outerHeight()).to.equal(78))
.should(el => expect(el.outerHeight()).to.equal(73))
})
})

0 comments on commit 0daf187

Please sign in to comment.