We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b024de commit f59cd2eCopy full SHA for f59cd2e
packages/bootstrap-vue-3/src/components/BCard/card.spec.ts
@@ -30,9 +30,9 @@ describe('card', () => {
30
const wrapper = mount(BCard, {
31
props: {align: 'start'},
32
})
33
- expect(wrapper.classes()).toContain('text-fill')
+ expect(wrapper.classes()).toContain('text-start')
34
await wrapper.setProps({align: undefined})
35
- expect(wrapper.classes()).not.toContain('text-fill')
+ expect(wrapper.classes()).not.toContain('text-start')
36
37
38
it('has class text-{type} when prop textVariant', async () => {
0 commit comments