PR-440978: Adding Cypress Component Testing.

This commit is contained in:
2023-03-03 08:27:25 -06:00
parent d76372d1e0
commit 24987d7c09
17 changed files with 2252 additions and 69 deletions

View File

@ -23,16 +23,18 @@
"types": [
"react/next",
"react-dom/next",
"node"
"node",
"cypress"
],
"sourceMap": true,
"baseUrl": "src",
"baseUrl": ".",
"outDir": "dist",
"skipLibCheck": true,
"noImplicitAny": false,
"paths": {
"@components/*": ["components/*"],
},
"@components/*": ["src/components/*"],
"@components": ["src/components"]
}
},
"include": [
"**/*"
@ -40,6 +42,6 @@
"exclude": [
"node_modules",
"dist",
"PRNameGenerator.ts",
"PRNameGenerator.ts"
]
}