Skip to content

Commit ab7f051

Browse files
committed
fix: skip router test for vue version < 2.6
1 parent c14d6fd commit ab7f051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/specs/wrapper/find.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { itDoNotRunIf, itSkipIf } from 'conditional-specs'
1919

2020
describeWithShallowAndMount('find', mountingMethod => {
2121
itDoNotRunIf(
22-
mountingMethod.name === 'shallowMount',
22+
mountingMethod.name === 'shallowMount' || vueVersion < 2.6,
2323
'returns a VueWrapper using a <router-view /> component',
2424
async () => {
2525
const localVue = createLocalVue()

0 commit comments

Comments
 (0)