@@ -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