Skip to content

Update deps for Vue 2.7 #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: Cypress update to 13.7.0
  • Loading branch information
baboon-king committed Mar 14, 2024
commit a79b411e1ea9aa3b905421e6ef4b15fe43c60b9c
13 changes: 6 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion template/config/cypress-ct/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"vue": "^2.7.16"
},
"devDependencies": {
"cypress": "^13.6.1"
"cypress": "^13.7.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ import HelloWorld from '../HelloWorld.vue'

describe('HelloWorld', () => {
it('playground', () => {
// TODO: https://github.com/cypress-io/cypress/pull/28818
// @ts-ignore
cy.mount(HelloWorld, { propsData: { msg: 'Hello Cypress' } })
})

it('renders properly', () => {
// TODO: https://github.com/cypress-io/cypress/pull/28818
// @ts-ignore
cy.mount(HelloWorld, { propsData: { msg: 'Hello Cypress' } })
cy.get('h1').should('contain', 'Hello Cypress')
})
Expand Down
2 changes: 1 addition & 1 deletion template/config/cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"test:e2e:ci": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'"
},
"devDependencies": {
"cypress": "^13.6.1",
"cypress": "^13.7.0",
"start-server-and-test": "^2.0.3"
}
}