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 921db0c commit 9dae877Copy full SHA for 9dae877
test/mount.test.js
@@ -19,7 +19,7 @@ test('it can create an instance without any optional arguments', () => {
19
test('it can create an instance with props', () => {
20
const comp = createComponent()
21
const props = { name: 'world' }
22
- const { vNode, el } = createComponentInstance(comp, { props })
+ const { el } = createComponentInstance(comp, { props })
23
assert.is(el.querySelector('h1').textContent, 'Hello world')
24
})
25
0 commit comments