Update dependencies

This commit is contained in:
The Jared Wilcurt 2020-01-23 19:43:40 -05:00
parent be3c9e17bc
commit 0a009067ae
6 changed files with 3536 additions and 2534 deletions

6048
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -49,10 +49,10 @@
"@vue/cli-plugin-eslint": "^4.1.2", "@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2", "@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^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-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3", "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-dynamic-import-node": "^2.3.0",
"babel-plugin-transform-runtime": "^6.23.0", "babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0", "babel-preset-env": "^1.7.0",
@ -66,10 +66,10 @@
"eslint-plugin-jest": "^23.6.0", "eslint-plugin-jest": "^23.6.0",
"eslint-plugin-vue": "^6.1.2", "eslint-plugin-vue": "^6.1.2",
"eslint-plugin-vue-a11y": "^0.0.31", "eslint-plugin-vue-a11y": "^0.0.31",
"jest": "^24.9.0", "jest": "^25.1.0",
"jest-environment-jsdom": "^24.9.0", "jest-environment-jsdom": "^25.1.0",
"jest-environment-jsdom-global": "^1.2.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", "jest-transform-stub": "^2.0.0",
"nw": "0.43.6-sdk", "nw": "0.43.6-sdk",
"nw-vue-devtools-prebuilt": "^0.0.10", "nw-vue-devtools-prebuilt": "^0.0.10",

View File

@ -5,7 +5,7 @@ describe('App.vue', () => {
test('Render default contents', () => { test('Render default contents', () => {
const wrapper = shallowMount(App); const wrapper = shallowMount(App);
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });
}); });

View File

@ -5,7 +5,7 @@ describe('FsExample.vue', () => {
test('Render default contents', () => { test('Render default contents', () => {
const wrapper = shallowMount(FsExample); const wrapper = shallowMount(FsExample);
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });
@ -17,7 +17,7 @@ describe('FsExample.vue', () => {
expect(window.nw.require) expect(window.nw.require)
.toHaveBeenCalledWith('fs'); .toHaveBeenCalledWith('fs');
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });
@ -35,7 +35,7 @@ describe('FsExample.vue', () => {
expect(window.nw.require) expect(window.nw.require)
.toHaveBeenCalledWith('fs'); .toHaveBeenCalledWith('fs');
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });
}); });

View File

@ -15,7 +15,7 @@ describe('HelloWorld.vue', () => {
test('Render default contents', () => { test('Render default contents', () => {
const wrapper = mount(HelloWorld); const wrapper = mount(HelloWorld);
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });

View File

@ -32,7 +32,7 @@ describe('LinkList.vue', () => {
propsData: { links: [link] } propsData: { links: [link] }
}); });
expect(wrapper.html()) expect(wrapper)
.toMatchSnapshot(); .toMatchSnapshot();
}); });