Skip to content

Commit 18b22c9

Browse files
committed
fix: remove useless access to vm
1 parent 0795155 commit 18b22c9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/mount.spec.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,12 @@ describe('mount: general tests', () => {
6262
})
6363

6464
expect(wrapper.get('#countValue').text()).toBe('1')
65-
expect(wrapper.vm.countValue).toBe(1)
6665
expect(wrapper.get('#oneLayerCountObjectValue').text()).toBe('2')
67-
expect(wrapper.vm.oneLayerCountObjectValue).toBe(2)
6866
expect(wrapper.get('#twoLayersCountObjectValue').text()).toBe('3')
69-
expect(wrapper.vm.twoLayersCountObjectValue).toBe(3)
7067
expect(wrapper.get('#countArrayValue').text()).toBe('4')
71-
expect(wrapper.vm.countArrayValue).toBe(4)
7268
expect(wrapper.get('#countMatrixValue').text()).toBe('5')
73-
expect(wrapper.vm.countMatrixValue).toBe(5)
7469
expect(wrapper.get('#oneLayerCountObjectArrayValue').text()).toBe('6')
75-
expect(wrapper.vm.oneLayerCountObjectArrayValue).toBe(6)
7670
expect(wrapper.get('#oneLayerCountArrayObjectValue').text()).toBe('7')
77-
expect(wrapper.vm.oneLayerCountArrayObjectValue).toBe(7)
7871
expect(wrapper.get('#oneLayerCountObjectMatrixValue').text()).toBe('8')
79-
expect(wrapper.vm.oneLayerCountObjectMatrixValue).toBe(8)
8072
})
8173
})

0 commit comments

Comments
 (0)