Skip to content

Commit c7bf97a

Browse files
authored
Update dropdown-divider.spec.js
1 parent ba1986d commit c7bf97a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/dropdown/dropdown-divider.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { mount } from '@vue/test-utils'
33

44
describe('dropdown > dropdown-divider', () => {
55
it('works', async () => {
6-
const wrapper = mount('Divider')
6+
const wrapper = mount(Divider)
77

88
expect(wrapper.is('div')).toBe(true)
99
expect(wrapper.classes()).toContain('dropdown-divider')
@@ -14,7 +14,7 @@ describe('dropdown > dropdown-divider', () => {
1414
})
1515

1616
it('renders custom root element when prop tag set', async () => {
17-
const wrapper = mount('Divider', {
17+
const wrapper = mount(Divider, {
1818
propsData: {
1919
tag: 'span'
2020
}
@@ -29,7 +29,7 @@ describe('dropdown > dropdown-divider', () => {
2929
})
3030

3131
it('does not render default slot content', async () => {
32-
const wrapper = mount('Divider', {
32+
const wrapper = mount(Divider, {
3333
slots: {
3434
default: 'foobar'
3535
}

0 commit comments

Comments
 (0)