Skip to content

Commit 9dae877

Browse files
committed
Cleanup
1 parent 921db0c commit 9dae877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/mount.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test('it can create an instance without any optional arguments', () => {
1919
test('it can create an instance with props', () => {
2020
const comp = createComponent()
2121
const props = { name: 'world' }
22-
const { vNode, el } = createComponentInstance(comp, { props })
22+
const { el } = createComponentInstance(comp, { props })
2323
assert.is(el.querySelector('h1').textContent, 'Hello world')
2424
})
2525

0 commit comments

Comments
 (0)