Skip to content

Commit e2a6986

Browse files
authored
docs: fix typo (#1471)
It should be `findAll` to get `WrapperArray`.
1 parent afd7a82 commit e2a6986

File tree

1 file changed

+1
-1
lines changed
  • docs/api/wrapper-array

1 file changed

+1
-1
lines changed

Diff for: docs/api/wrapper-array/is.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ import { mount } from '@vue/test-utils'
1515
import Foo from './Foo.vue'
1616

1717
const wrapper = mount(Foo)
18-
const divArray = wrapper.find('div')
18+
const divArray = wrapper.findAll('div')
1919
expect(divArray.is('div')).toBe(true)
2020
```

0 commit comments

Comments
 (0)