Skip to content

Commit fd50505

Browse files
committed
Update dependencies
1 parent 566cb65 commit fd50505

File tree

3 files changed

+1175
-1196
lines changed

3 files changed

+1175
-1196
lines changed

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,23 @@
2828
"prepublishOnly": "yarn run lint && yarn test && yarn run build"
2929
},
3030
"devDependencies": {
31-
"@avalanche/eslint-config": "^2.0.0",
32-
"@babel/core": "^7.0.0-beta.51",
33-
"@babel/preset-env": "^7.0.0-beta.51",
34-
"@vue/test-utils": "^1.0.0-beta.18",
31+
"@avalanche/eslint-config": "^3.0.0",
32+
"@babel/core": "^7.1.2",
33+
"@babel/preset-env": "^7.1.0",
34+
"@vue/test-utils": "1.0.0-beta.25",
3535
"babel-core": "^7.0.0-bridge.0",
36-
"babel-jest": "^23.0.1",
37-
"coveralls": "^3.0.1",
38-
"eslint": "^4.19.1",
39-
"eslint-plugin-compat": "^2.4.0",
40-
"eslint-plugin-import": "^2.12.0",
36+
"babel-jest": "^23.6.0",
37+
"coveralls": "^3.0.2",
38+
"eslint": "^5.6.1",
39+
"eslint-plugin-compat": "^2.5.1",
40+
"eslint-plugin-import": "^2.14.0",
4141
"eslint-plugin-markdown": "^1.0.0-beta.6",
42-
"jest": "^23.1.0",
43-
"rollup": "^0.60.2",
44-
"rollup-plugin-babel": "^4.0.0-beta.0",
42+
"jest": "^23.6.0",
43+
"rollup": "^0.66.2",
44+
"rollup-plugin-babel": "^4.0.3",
4545
"uglify-es": "^3.3.9",
46-
"vue": "^2.5.16",
47-
"vue-template-compiler": "^2.5.16",
46+
"vue": "^2.5.17",
47+
"vue-template-compiler": "^2.5.17",
4848
"vuex": "^3.0.1"
4949
},
5050
"main": "dist/index.js",

test/multi-row.test.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ describe(`Component initialized with multi row setup.`, () => {
6767
wrapper.find(`input`).element.value = `New Name`;
6868
wrapper.find(`input`).trigger(`input`);
6969

70+
// The following line was added because otherwise the tests are failing.
71+
// This is a pretty dirty workaround for some problem with @vue/test-utils.
72+
// eslint-disable-next-line no-unused-expressions
73+
wrapper.find(`div:nth-child(2)`);
74+
7075
wrapper.find(`div:nth-child(2) input:nth-child(2)`).element.value = `new@email.com`;
7176
wrapper.find(`div:nth-child(2) input:nth-child(2)`).trigger(`input`);
7277

0 commit comments

Comments
 (0)