Skip to content

Commit

Permalink
fix: allow find stubbed functional component by name
Browse files Browse the repository at this point in the history
  • Loading branch information
Djaler committed Apr 7, 2021
1 parent 62dec1c commit ba86ef3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
10 changes: 2 additions & 8 deletions packages/test-utils/src/matches.js
Expand Up @@ -10,7 +10,7 @@ function vmMatchesName(vm, name) {
// We want to mirror how Vue resolves component names in SFCs:
// For example, <test-component />, <TestComponent /> and `<testComponent />
// all resolve to the same component
const componentName = (vm.$options && vm.$options.name) || ''
const componentName = vm.name || (vm.$options && vm.$options.name) || ''
return (
!!name &&
(componentName === name ||
Expand Down Expand Up @@ -56,13 +56,7 @@ export function matches(node, selector) {
return element && element.matches && element.matches(selector.value)
}

const isFunctionalSelector = isConstructor(selector.value)
? selector.value.options.functional
: selector.value.functional

const componentInstance = isFunctionalSelector
? node[FUNCTIONAL_OPTIONS]
: node.child
const componentInstance = node[FUNCTIONAL_OPTIONS] || node.child

if (!componentInstance) {
return false
Expand Down
22 changes: 22 additions & 0 deletions test/specs/wrapper/find.spec.js
Expand Up @@ -257,6 +257,28 @@ describeWithShallowAndMount('find', mountingMethod => {
}
})

itSkipIf(
vueVersion < 2.3,
'returns functional component with name by name',
() => {
const TestFunctionalComponent = {
render: h => h('div'),
functional: true,
name: 'test-functional-component'
}
const TestComponent = {
template: '<div><test-functional-component /></div>',
components: {
TestFunctionalComponent
}
}
const wrapper = mountingMethod(TestComponent)
expect(
wrapper.find({ name: 'test-functional-component' }).exists()
).toEqual(true)
}
)

it('returns extended functional component', () => {
const TestFunctionalComponent = Vue.extend({
render: h => h('div'),
Expand Down

0 comments on commit ba86ef3

Please sign in to comment.