Update dependencies
This commit is contained in:
parent
be3c9e17bc
commit
0a009067ae
6048
package-lock.json
generated
6048
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@ -49,10 +49,10 @@
|
||||
"@vue/cli-plugin-eslint": "^4.1.2",
|
||||
"@vue/cli-plugin-unit-jest": "^4.1.2",
|
||||
"@vue/cli-service": "^4.1.2",
|
||||
"@vue/test-utils": "1.0.0-beta.29",
|
||||
"@vue/test-utils": "1.0.0-beta.31",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"babel-eslint": "^10.0.3",
|
||||
"babel-jest": "^24.9.0",
|
||||
"babel-jest": "^25.1.0",
|
||||
"babel-plugin-dynamic-import-node": "^2.3.0",
|
||||
"babel-plugin-transform-runtime": "^6.23.0",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
@ -66,10 +66,10 @@
|
||||
"eslint-plugin-jest": "^23.6.0",
|
||||
"eslint-plugin-vue": "^6.1.2",
|
||||
"eslint-plugin-vue-a11y": "^0.0.31",
|
||||
"jest": "^24.9.0",
|
||||
"jest-environment-jsdom": "^24.9.0",
|
||||
"jest": "^25.1.0",
|
||||
"jest-environment-jsdom": "^25.1.0",
|
||||
"jest-environment-jsdom-global": "^1.2.0",
|
||||
"jest-serializer-vue-tjw": "^3.3.0",
|
||||
"jest-serializer-vue-tjw": "^3.5.0",
|
||||
"jest-transform-stub": "^2.0.0",
|
||||
"nw": "0.43.6-sdk",
|
||||
"nw-vue-devtools-prebuilt": "^0.0.10",
|
||||
|
@ -5,7 +5,7 @@ describe('App.vue', () => {
|
||||
test('Render default contents', () => {
|
||||
const wrapper = shallowMount(App);
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
|
@ -5,7 +5,7 @@ describe('FsExample.vue', () => {
|
||||
test('Render default contents', () => {
|
||||
const wrapper = shallowMount(FsExample);
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
|
||||
@ -17,7 +17,7 @@ describe('FsExample.vue', () => {
|
||||
expect(window.nw.require)
|
||||
.toHaveBeenCalledWith('fs');
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
|
||||
@ -35,7 +35,7 @@ describe('FsExample.vue', () => {
|
||||
expect(window.nw.require)
|
||||
.toHaveBeenCalledWith('fs');
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
|
@ -15,7 +15,7 @@ describe('HelloWorld.vue', () => {
|
||||
test('Render default contents', () => {
|
||||
const wrapper = mount(HelloWorld);
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
|
||||
|
@ -32,7 +32,7 @@ describe('LinkList.vue', () => {
|
||||
propsData: { links: [link] }
|
||||
});
|
||||
|
||||
expect(wrapper.html())
|
||||
expect(wrapper)
|
||||
.toMatchSnapshot();
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user