Skip to content

Commit 42c54e2

Browse files
committed
chore: update deps and fix comment
1 parent d704516 commit 42c54e2

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -47,38 +47,38 @@
4747
"author": "Daniel Cook",
4848
"license": "MIT",
4949
"dependencies": {
50-
"@babel/runtime": "^7.14.8",
51-
"@testing-library/dom": "^7.31.2",
50+
"@babel/runtime": "^7.15.4",
51+
"@testing-library/dom": "^8.5.0",
5252
"@vue/test-utils": "^2.0.0-rc.12"
5353
},
5454
"devDependencies": {
55-
"@apollo/client": "^3.3.21",
56-
"@babel/plugin-transform-runtime": "^7.14.5",
55+
"@apollo/client": "^3.4.11",
56+
"@babel/plugin-transform-runtime": "^7.15.0",
5757
"@testing-library/jest-dom": "^5.14.1",
58-
"@testing-library/user-event": "^13.1.8",
58+
"@testing-library/user-event": "^13.2.1",
5959
"@types/estree": "0.0.48",
6060
"@vue/apollo-composable": "^4.0.0-alpha.14",
61-
"@vue/compiler-sfc": "^3.1.1",
61+
"@vue/compiler-sfc": "^3.2.12",
6262
"apollo-boost": "^0.4.9",
6363
"axios": "^0.20.0",
6464
"element-plus": "^1.0.2-beta.64",
65-
"eslint-plugin-vue": "^7.14.0",
66-
"graphql": "^15.5.0",
65+
"eslint-plugin-vue": "^7.18.0",
66+
"graphql": "^15.5.3",
6767
"graphql-tag": "^2.12.4",
6868
"isomorphic-unfetch": "^3.1.0",
6969
"jest-serializer-vue": "^2.0.2",
7070
"kcd-scripts": "^10.0.0",
7171
"lodash.merge": "^4.6.2",
7272
"msw": "^0.21.3",
7373
"tsd": "^0.17.0",
74-
"typescript": "^4.3.5",
74+
"typescript": "^4.4.3",
7575
"vee-validate": "^4.3.5",
76-
"vue": "^3.0.4",
76+
"vue": "^3.2.12",
7777
"vue-apollo": "^3.0.5",
78-
"vue-i18n": "^9.1.6",
79-
"vue-jest": "^5.0.0-alpha.8",
78+
"vue-i18n": "^9.1.7",
79+
"vue-jest": "^5.0.0-alpha.10",
8080
"vue-router": "^4.0.3",
81-
"vuetify": "^2.5.3",
81+
"vuetify": "^2.5.8",
8282
"vuex": "^4.0.0"
8383
},
8484
"peerDependencies": {

src/fire-event.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fireEvent.touch = async elem => {
2828
// fireEvent.update is a small utility to provide a better experience when
2929
// working with v-model.
3030
// Related upstream issue: https://github.com/vuejs/vue-test-utils/issues/345#issuecomment-380588199
31-
// Examples: https://github.com/testing-library/vue-testing-library/blob/master/src/__tests__/form.js fireEvent.update = (elem, value) => {
31+
// See some examples in __tests__/form.js
3232
fireEvent.update = (elem, value) => {
3333
const tagName = elem.tagName
3434
const type = elem.type

0 commit comments

Comments
 (0)