Skip to content

Commit a79b411

Browse files
committed
feat: Cypress update to 13.7.0
1 parent d70ab27 commit a79b411

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

pnpm-lock.yaml

+6-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

template/config/cypress-ct/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"vue": "^2.7.16"
88
},
99
"devDependencies": {
10-
"cypress": "^13.6.1"
10+
"cypress": "^13.7.0"
1111
}
1212
}

template/config/cypress-ct/src/components/__tests__/HelloWorld.cy.js

-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ import HelloWorld from '../HelloWorld.vue'
22

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

108
it('renders properly', () => {
11-
// TODO: https://github.com/cypress-io/cypress/pull/28818
12-
// @ts-ignore
139
cy.mount(HelloWorld, { propsData: { msg: 'Hello Cypress' } })
1410
cy.get('h1').should('contain', 'Hello Cypress')
1511
})

template/config/cypress/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"test:e2e:ci": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'"
55
},
66
"devDependencies": {
7-
"cypress": "^13.6.1",
7+
"cypress": "^13.7.0",
88
"start-server-and-test": "^2.0.3"
99
}
1010
}

0 commit comments

Comments
 (0)