Skip to content
This repository was archived by the owner on Apr 27, 2019. It is now read-only.

Commit 7d0c3eb

Browse files
committed
chore: use @vue/test-utils
1 parent e7d9c68 commit 7d0c3eb

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"vue": "^2.4.4"
66
},
77
"devDependencies": {
8+
"@vue/test-utils": "^1.0.0-beta.13",
89
"babel-jest": "^21.2.0",
910
"babel-preset-env": "^1.6.0",
1011
"jest": "^21.2.1",
1112
"regenerator-runtime": "^0.11.0",
12-
"vue-template-compiler": "^2.4.4",
13-
"vue-test-utils": "1.0.0-beta"
13+
"vue-template-compiler": "^2.4.4"
1414
},
1515
"scripts": {
1616
"test": "jest"

test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Import the mount() method from the test utils
22
// and the component you want to test
3-
import { mount } from 'vue-test-utils'
3+
import { mount } from '@vue/test-utils'
44
import Counter from './counter'
55

66
describe('Counter', () => {

0 commit comments

Comments
 (0)