2dbfda1285
Adds webdriver tests for testing from a users perspective via browser actions. We currently support local test runners for a bunch of actions on desktop `chrome`/`firefox`/`edge`/`safari` on macos. We also have a browserstack runner which we'll enable in another PR. ### Release Note - Adds initial webdriver tests
29 lines
728 B
JSON
Executable file
29 lines
728 B
JSON
Executable file
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"sourceMap": false,
|
|
"importHelpers": false,
|
|
"skipDefaultLibCheck": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["src", "scripts"],
|
|
"references": [{ "path": "../../packages/tldraw" }]
|
|
}
|