* Bring back tauri e2e tests Fixes #2061 once green * Fix if * Add bail mocha opt and more cleanup, disable second dir test * Add mocha types and tsconfig * Add 10sec delay for auth (worked in 22.04 local docker) * Add back close settings click * Disable open file * Re-enable settings test * Handle error page * Back to brower.execute location.href * Add --force to tauri-driver install (I think because of cache) --------- Co-authored-by: Jess Frazelle <jessfraz@users.noreply.github.com>
33 lines
783 B
JSON
33 lines
783 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"@types/wicg-file-system-access",
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"mocha"
|
|
],
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src", "e2e", "./*.ts"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|