Cypress E2E testing

This commit is contained in:
David
2021-03-13 21:38:34 +01:00
parent 0a38a83c38
commit 6153f739d2
8 changed files with 788 additions and 12 deletions

14
cypress/tsconfig.json Normal file
View File

@@ -0,0 +1,14 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"isolatedModules": false,
"types": [
"cypress",
"@testing-library/cypress"
]
},
"include": [
"../node_modules/cypress",
"./*/*.ts"
]
}