Skip to content

Commit f59cd2e

Browse files
committed
Fix test: Expected value should be text-start
1 parent 1b024de commit f59cd2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/bootstrap-vue-3/src/components/BCard/card.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ describe('card', () => {
3030
const wrapper = mount(BCard, {
3131
props: {align: 'start'},
3232
})
33-
expect(wrapper.classes()).toContain('text-fill')
33+
expect(wrapper.classes()).toContain('text-start')
3434
await wrapper.setProps({align: undefined})
35-
expect(wrapper.classes()).not.toContain('text-fill')
35+
expect(wrapper.classes()).not.toContain('text-start')
3636
})
3737

3838
it('has class text-{type} when prop textVariant', async () => {

0 commit comments

Comments
 (0)