mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-01-16 22:31:25 -08:00
Added data-testid attributes to form inputs and buttons in ExternalAPI components to improve test automation reliability. Updated feature files and step definitions to use these selectors, refined window switching logic, and improved timing for UI interactions. Also exposed isElectronDevelopment and added isMainWindowPage utility for window identification.
22 lines
439 B
JSON
22 lines
439 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "..",
|
|
"outDir": "../out/features",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.js",
|
|
"../src/constants/pageTypes.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.d.ts"
|
|
]
|
|
}
|