Skip to content

Commit 62cbdb4

Browse files
committed
chore: upgrade some packages
1 parent dd516fe commit 62cbdb4

File tree

3 files changed

+470
-399
lines changed

3 files changed

+470
-399
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,28 @@
3939
"test:unit": "jest"
4040
},
4141
"dependencies": {
42-
"@nuxt/http": "^0.5.10",
42+
"@nuxt/http": "^0.5.11",
4343
"@nuxtjs/google-analytics": "^2.4.0",
44-
"@nuxtjs/pwa": "^3.0.0-beta.20",
44+
"@nuxtjs/pwa": "^3.0.2",
4545
"@nuxtjs/sentry": "^4.3.4",
4646
"@nuxtjs/sitemap": "^2.4.0",
47-
"nuxt": "^2.14.1",
47+
"nuxt": "^2.14.4",
4848
"vee-validate": "^3.3.9"
4949
},
5050
"devDependencies": {
51-
"@babel/core": "^7.11.1",
51+
"@babel/core": "^7.11.4",
5252
"@babel/preset-env": "^7.11.0",
5353
"@nuxtjs/eslint-config": "^3.1.0",
5454
"@nuxtjs/eslint-module": "^2.0.0",
5555
"@nuxtjs/stylelint-module": "^4.0.0",
56-
"@nuxtjs/tailwindcss": "^3.0.0",
57-
"@vue/test-utils": "^1.0.3",
56+
"@nuxtjs/tailwindcss": "^3.0.2",
57+
"@vue/test-utils": "^1.0.4",
5858
"babel-core": "^7.0.0-bridge",
5959
"babel-eslint": "^10.1.0",
6060
"babel-jest": "^26.3.0",
6161
"codecov": "^3.7.2",
62-
"cypress": "^4.12.1",
63-
"eslint": "^7.6.0",
62+
"cypress": "^5.0.0",
63+
"eslint": "^7.7.0",
6464
"eslint-config-prettier": "^6.11.0",
6565
"eslint-config-standard": "^14.1.1",
6666
"eslint-loader": "^4.0.2",
@@ -74,12 +74,12 @@
7474
"eslint-plugin-standard": "^4.0.1",
7575
"eslint-plugin-vue": "^6.2.2",
7676
"husky": "^4.2.5",
77-
"jest": "^26.4.0",
77+
"jest": "^26.4.2",
7878
"jest-serializer-vue": "^2.0.2",
7979
"jest-transform-stub": "^2.0.0",
80-
"lint-staged": "^10.2.11",
80+
"lint-staged": "^10.2.13",
8181
"postcss-nested": "^4.2.3",
82-
"prettier": "^2.0.5",
82+
"prettier": "^2.1.1",
8383
"stylelint": "^13.6.1",
8484
"stylelint-config-recommended": "^3.0.0",
8585
"vue-jest": "^3.0.6"

test/e2e/integration/index.js

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
describe("Example Test", () => {
2-
it("Visits the app root url", () => {
3-
cy.visit("/");
4-
cy.contains(".v-card__title", "Welcome to the Vuetify + Nuxt.js template");
5-
cy.screenshot();
6-
});
1+
describe('Example Test', () => {
2+
it('Visits the app root url', () => {
3+
cy.visit('/')
4+
cy.contains('.v-card__title', 'Welcome to the Vuetify + Nuxt.js template')
5+
cy.screenshot()
6+
})
77

8-
it("Go to inspire page", () => {
9-
cy.get("a.v-btn[href='/inspire']").click();
10-
cy.contains(
11-
"blockquote",
12-
"First, solve the problem. Then, write the code."
13-
);
14-
cy.screenshot();
15-
});
16-
});
8+
it('Go to inspire page', () => {
9+
cy.get("a.v-btn[href='/inspire']").click()
10+
cy.contains('blockquote', 'First, solve the problem. Then, write the code.')
11+
cy.screenshot()
12+
})
13+
})

0 commit comments

Comments
 (0)