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
36 lines
792 B
JSON
36 lines
792 B
JSON
{
|
|
"include": ["test"],
|
|
"exclude": ["node_modules", "dist", ".tsbuild*"],
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"lib": ["dom", "esnext"],
|
|
"esModuleInterop": true,
|
|
"target": "ESNext",
|
|
"moduleResolution": "node16",
|
|
"types": [
|
|
"node",
|
|
"@wdio/globals/types",
|
|
"@wdio/mocha-framework",
|
|
"@types/mocha",
|
|
"wdio-vscode-service"
|
|
],
|
|
"noEmitOnError": false,
|
|
"noEmit": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"references": [
|
|
{ "path": "../packages/editor" },
|
|
{ "path": "../packages/tlschema" },
|
|
{ "path": "../packages/tlstore" },
|
|
{ "path": "../packages/primitives" }
|
|
]
|
|
}
|