Skip to content

Commit 14d0f1e

Browse files
committed
Fix test. fill is not a valid value for text-xxx alignment.
1 parent a32e050 commit 14d0f1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('card', () => {
2828

2929
it('has class text-{type} when prop align', async () => {
3030
const wrapper = mount(BCard, {
31-
props: {align: 'fill'},
31+
props: {align: 'start'},
3232
})
3333
expect(wrapper.classes()).toContain('text-fill')
3434
await wrapper.setProps({align: undefined})

0 commit comments

Comments
 (0)