Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkirsz committed May 9, 2023
1 parent 2ed33b2 commit 27f695f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function runTests() {
const buttons = Array.from(document.querySelectorAll('button'))

expect(buttons.length).toBe(2)
expect(getComputedStyle(buttons[0]).height).toBe(50)
expect(getComputedStyle(buttons[1]).height).toBe(50)
expect(getComputedStyle(buttons[0]).height).toBe('50px')
expect(getComputedStyle(buttons[1]).height).toBe('50px')
})
}

0 comments on commit 27f695f

Please sign in to comment.