Skip to content

feat: upgrade Cypress to v10.11.0 #6280

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

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
revert: ok fine, ignore both rules, sheesh
  • Loading branch information
TCL735 committed Nov 9, 2022
commit 2eeb6541732e7798f37d37e69a445ebe34150bae
2 changes: 1 addition & 1 deletion cypress/e2e/shared/annotations.range.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ describe('Annotations, but in a different test suite', () => {
.should($el => {
expect($el).to.have.length(1)
expect(Cypress.dom.isDetached($el)).to.be.false
// eslint-disable-next-line jest/unbound-method
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
expect($el).not.to.be.disabled
})
.click()
Expand Down
8 changes: 4 additions & 4 deletions cypress/util/annotationsSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const addAnnotation = (cy: Cypress.Chainable) => {
.should($el => {
expect($el).to.have.length(1)
expect(Cypress.dom.isDetached($el)).to.be.false
// eslint-disable-next-line jest/unbound-method
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
expect($el).not.to.be.disabled
})
.click()
Expand Down Expand Up @@ -174,7 +174,7 @@ export const addRangeAnnotation = (
.should($el => {
expect($el).to.have.length(1)
expect(Cypress.dom.isDetached($el)).to.be.false
// eslint-disable-next-line jest/unbound-method
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
expect($el).not.to.be.disabled
})
.click()
Expand Down Expand Up @@ -208,7 +208,7 @@ export const testEditAnnotation = (cy: Cypress.Chainable) => {
.should($el => {
expect($el).to.have.length(1)
expect(Cypress.dom.isDetached($el)).to.be.false
// eslint-disable-next-line jest/unbound-method
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
expect($el).not.to.be.disabled
})
.click()
Expand Down Expand Up @@ -252,7 +252,7 @@ export const testEditRangeAnnotation = (
.should($el => {
expect($el).to.have.length(1)
expect(Cypress.dom.isDetached($el)).to.be.false
// eslint-disable-next-line jest/unbound-method
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
expect($el).not.to.be.disabled
})
.click()
Expand Down