Test refactoring & adding

This commit is contained in:
David
2021-03-18 18:52:58 +01:00
parent a3ae493c25
commit 535f791455
9 changed files with 303 additions and 359 deletions

View File

@@ -1,7 +1,22 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"isolatedModules": false,
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"jsx": "preserve",
"types": [
"cypress",
"@testing-library/cypress"
@@ -9,6 +24,7 @@
},
"include": [
"../node_modules/cypress",
"../node_modules/@testing-library/cypress",
"./*/*.ts"
]
}