Skip to content

Commit

Permalink
feat: [divider] - fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgoud committed Nov 2, 2023
1 parent 2823a8b commit 261c85f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/divider/test/divider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ describe('Divider tests', () => {
expect(findDivider().classes()).toContain('puik-divider--vertical')
})

it('the value of the data-test attribute should be "vertical-test"', () => {
it('the value of the data-test attribute should be "test"', () => {
factory({ orientation: 'vertical', dataTest: 'test' })
expect(findDivider().attributes('data-test')).toBe('vertical-test')
expect(findDivider().attributes('data-test')).toBe('test')
})
})

0 comments on commit 261c85f

Please sign in to comment.