Skip to content

Commit 14cb0ae

Browse files
committed
test: fix broken test
1 parent a251762 commit 14cb0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/specs/mount/Wrapper/find.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ describe('find', () => {
138138

139139
const wrapper = mount(TestComponent)
140140
expect(wrapper.find(FunctionalComponent).vnode).to.be.an('object')
141-
expect(wrapper.find(FunctionalComponent).vm).to.be('undefined')
141+
expect(wrapper.find(FunctionalComponent).vm).to.equal(undefined)
142142
})
143143

144144
it('returns correct number of Vue Wrappers when component has a v-for', () => {

0 commit comments

Comments
 (0)