Skip to content

Commit

Permalink
chore: upgrade some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jefrydco committed Aug 27, 2020
1 parent dd516fe commit 62cbdb4
Show file tree
Hide file tree
Showing 3 changed files with 470 additions and 399 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,28 @@
"test:unit": "jest"
},
"dependencies": {
"@nuxt/http": "^0.5.10",
"@nuxt/http": "^0.5.11",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@nuxtjs/pwa": "^3.0.2",
"@nuxtjs/sentry": "^4.3.4",
"@nuxtjs/sitemap": "^2.4.0",
"nuxt": "^2.14.1",
"nuxt": "^2.14.4",
"vee-validate": "^3.3.9"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^3.0.0",
"@vue/test-utils": "^1.0.3",
"@nuxtjs/tailwindcss": "^3.0.2",
"@vue/test-utils": "^1.0.4",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"cypress": "^4.12.1",
"eslint": "^7.6.0",
"cypress": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
Expand All @@ -74,12 +74,12 @@
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jest": "^26.4.0",
"jest": "^26.4.2",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.2.11",
"lint-staged": "^10.2.13",
"postcss-nested": "^4.2.3",
"prettier": "^2.0.5",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"vue-jest": "^3.0.6"
Expand Down
27 changes: 12 additions & 15 deletions test/e2e/integration/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
describe("Example Test", () => {
it("Visits the app root url", () => {
cy.visit("/");
cy.contains(".v-card__title", "Welcome to the Vuetify + Nuxt.js template");
cy.screenshot();
});
describe('Example Test', () => {
it('Visits the app root url', () => {
cy.visit('/')
cy.contains('.v-card__title', 'Welcome to the Vuetify + Nuxt.js template')
cy.screenshot()
})

it("Go to inspire page", () => {
cy.get("a.v-btn[href='/inspire']").click();
cy.contains(
"blockquote",
"First, solve the problem. Then, write the code."
);
cy.screenshot();
});
});
it('Go to inspire page', () => {
cy.get("a.v-btn[href='/inspire']").click()
cy.contains('blockquote', 'First, solve the problem. Then, write the code.')
cy.screenshot()
})
})
Loading

0 comments on commit 62cbdb4

Please sign in to comment.