We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f20d68 commit 2d618e7Copy full SHA for 2d618e7
docs/api/index.md
@@ -1688,14 +1688,14 @@ test('setValue on checkbox', async () => {
1688
expect(wrapper.find('div')).toBe(false)
1689
})
1690
1691
-test('setValue on input text', () => {
+test('setValue on input text', async () => {
1692
const wrapper = mount(Component)
1693
1694
await wrapper.find('input[type="text"]').setValue('hello!')
1695
expect(wrapper.find('p').text()).toBe('Text: hello!')
1696
1697
1698
-test('setValue on multi select', () => {
+test('setValue on multi select', async () => {
1699
1700
1701
// For select without multiple
0 commit comments