Skip to content

Commit

Permalink
test(breadcrumb): remove composition api
Browse files Browse the repository at this point in the history
  • Loading branch information
koca committed Mar 8, 2020
1 parent cc44045 commit 3a90d03
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/kiwi-core/src/Breadcrumb/tests/Breadcrumb.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbSeparator } from '../'
import { render } from '@/tests/test-utils'
import CompositionApi from '@vue/composition-api'

const renderComponent = (props) => {
const base = {
Expand All @@ -23,9 +22,7 @@ const renderComponent = (props) => {
`,
...props
}
return render(base, {}, vue => {
vue.use(CompositionApi)
})
return render(base)
}

it('should render correctly', () => {
Expand Down

0 comments on commit 3a90d03

Please sign in to comment.