Skip to content

Commit 2eeb654

Browse files
committed
revert: ok fine, ignore both rules, sheesh
1 parent 44e01e6 commit 2eeb654

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cypress/e2e/shared/annotations.range.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ describe('Annotations, but in a different test suite', () => {
263263
.should($el => {
264264
expect($el).to.have.length(1)
265265
expect(Cypress.dom.isDetached($el)).to.be.false
266-
// eslint-disable-next-line jest/unbound-method
266+
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
267267
expect($el).not.to.be.disabled
268268
})
269269
.click()

cypress/util/annotationsSetup.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export const addAnnotation = (cy: Cypress.Chainable) => {
9090
.should($el => {
9191
expect($el).to.have.length(1)
9292
expect(Cypress.dom.isDetached($el)).to.be.false
93-
// eslint-disable-next-line jest/unbound-method
93+
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
9494
expect($el).not.to.be.disabled
9595
})
9696
.click()
@@ -174,7 +174,7 @@ export const addRangeAnnotation = (
174174
.should($el => {
175175
expect($el).to.have.length(1)
176176
expect(Cypress.dom.isDetached($el)).to.be.false
177-
// eslint-disable-next-line jest/unbound-method
177+
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
178178
expect($el).not.to.be.disabled
179179
})
180180
.click()
@@ -208,7 +208,7 @@ export const testEditAnnotation = (cy: Cypress.Chainable) => {
208208
.should($el => {
209209
expect($el).to.have.length(1)
210210
expect(Cypress.dom.isDetached($el)).to.be.false
211-
// eslint-disable-next-line jest/unbound-method
211+
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
212212
expect($el).not.to.be.disabled
213213
})
214214
.click()
@@ -252,7 +252,7 @@ export const testEditRangeAnnotation = (
252252
.should($el => {
253253
expect($el).to.have.length(1)
254254
expect(Cypress.dom.isDetached($el)).to.be.false
255-
// eslint-disable-next-line jest/unbound-method
255+
// eslint-disable-next-line jest/unbound-method, @typescript-eslint/unbound-method
256256
expect($el).not.to.be.disabled
257257
})
258258
.click()

0 commit comments

Comments
 (0)