@@ -17,7 +17,7 @@ This is a monorepo providing WebdriverIO services for automated testing of nativ
1717| Category | Technology |
1818| ----------| ------------|
1919| Language | TypeScript 5.9+ (strict mode, ESM) |
20- | Runtime | Node.js 18 LTS or 20 LTS |
20+ | Runtime | Node.js 24 LTS |
2121| Package Manager | pnpm 10.27.0+ |
2222| Monorepo | Turborepo 2.5+ with pnpm workspaces |
2323| Testing | Vitest 3.2+ (unit/integration), WebdriverIO 9.0+ (E2E) |
@@ -29,7 +29,7 @@ This is a monorepo providing WebdriverIO services for automated testing of nativ
2929```
3030packages/
3131├── electron-service/ # Electron WDIO service
32- ├── tauri-service/ # Tauri WDIO service
32+ ├── tauri-service/ # Tauri WDIO service
3333├── tauri-plugin/ # Tauri v2 plugin (Rust + JS)
3434├── electron-cdp-bridge/ # Chrome DevTools Protocol bridge
3535├── native-utils/ # Cross-platform utilities
@@ -136,7 +136,7 @@ pnpm test # Run all tests
136136This codebase uses a ` Result<T, E> ` type for operations that can fail:
137137
138138``` typescript
139- type Result <T , E = Error > =
139+ type Result <T , E = Error > =
140140 | { ok: true ; value: T }
141141 | { ok: false ; error: E }
142142
0 commit comments