Skip to content

Commit 2d618e7

Browse files
authored
docs: Fix omission of async keywords. (#2163)
1 parent 0f20d68 commit 2d618e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/api/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1688,14 +1688,14 @@ test('setValue on checkbox', async () => {
16881688
expect(wrapper.find('div')).toBe(false)
16891689
})
16901690

1691-
test('setValue on input text', () => {
1691+
test('setValue on input text', async () => {
16921692
const wrapper = mount(Component)
16931693

16941694
await wrapper.find('input[type="text"]').setValue('hello!')
16951695
expect(wrapper.find('p').text()).toBe('Text: hello!')
16961696
})
16971697

1698-
test('setValue on multi select', () => {
1698+
test('setValue on multi select', async () => {
16991699
const wrapper = mount(Component)
17001700

17011701
// For select without multiple

0 commit comments

Comments
 (0)