File tree 3 files changed +11
-7
lines changed 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 2
2
"extends": "./node_modules/kcd-scripts/eslint.js",
3
3
"rules": {
4
4
"max-lines-per-function": "off",
5
- "testing-library/no-dom-import": "off" // We're not using React Testing Library here. We're wrapping DOM Testing Library directly
5
+ "testing-library/prefer-screen-queries": "off",
6
+ "testing-library/no-dom-import": "off", // We're not using React Testing Library here. We're wrapping DOM Testing Library directly
7
+ "@typescript-eslint/no-explicit-any": "off" // let's do better in the future
6
8
}
7
9
}
Original file line number Diff line number Diff line change 40
40
"author" :
" Kent C. Dodds <[email protected] > (https://kentcdodds.com)" ,
41
41
"license" : " MIT" ,
42
42
"dependencies" : {
43
- "@babel/runtime" : " ^7.11.2 " ,
44
- "@testing-library/dom" : " ^7.22.2 "
43
+ "@babel/runtime" : " ^7.12.5 " ,
44
+ "@testing-library/dom" : " ^7.26.6 "
45
45
},
46
46
"devDependencies" : {
47
- "cypress" : " ^5.0 .0" ,
48
- "dtslint" : " ^3.6.14 " ,
49
- "kcd-scripts" : " ^6.2.4 " ,
47
+ "cypress" : " ^5.6 .0" ,
48
+ "dtslint" : " ^4.0.5 " ,
49
+ "kcd-scripts" : " ^7.0.3 " ,
50
50
"npm-run-all" : " ^4.1.5" ,
51
- "typescript" : " ^4.0.2 "
51
+ "typescript" : " ^4.0.5 "
52
52
},
53
53
"peerDependencies" : {
54
54
"cypress" : " ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ export type SelectorMatcherOptions =
21
21
22
22
declare global {
23
23
namespace Cypress {
24
+ // 🤔 unsure why this Subject is unused, nor what to do with it...
25
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
24
26
interface Chainable < Subject = any > {
25
27
/**
26
28
* dom-testing-library helpers for Cypress
You can’t perform that action at this time.
0 commit comments