Skip to content

Commit

Permalink
fix: update test prop names
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzemp committed Feb 7, 2024
1 parent 89fe671 commit ba9d3d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('<TableDataCell>', () => {
const left = '200px'
const wrapper = shallow(<TableDataCell left={left} />)

expect(wrapper.html()).toContain(`left: ${left};`)
expect(wrapper.html()).toContain(`inset-inline-start: ${left};`)
})
it('accepts a muted prop', () => {
const wrapper = shallow(<TableDataCell muted />)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('<TableHeaderCell>', () => {
const left = '200px'
const wrapper = shallow(<TableHeaderCell left={left} />)

expect(wrapper.html()).toContain(`left: ${left};`)
expect(wrapper.html()).toContain(`inset-inline-start: ${left};`)
})
it('accepts an muted prop', () => {
const wrapper = shallow(<TableHeaderCell muted />)
Expand Down

0 comments on commit ba9d3d2

Please sign in to comment.