dev-test-electron
Installation
SKILL.md
Announce: "I'm using dev-test-electron for Electron app automation via Chrome DevTools Protocol."
A REAL Electron test must replicate what the user does. FAKE tests test something else.
Before writing ANY test, verify from SPEC.md/PLAN.md:
| REAL Test Criteria | Your Test Must |
|---|---|
| User workflow | Replicate exact steps (click → type → see result) |
| Protocol | Use SAME protocol as production (WebSocket, IPC, etc.) |
| UI interaction | Interact with ACTUAL UI elements user sees |
| Verification | Check what USER sees, not internal state |
The Electron-Specific Fake Test Trap
Electron apps often use WebSocket/IPC internally. Testing HTTP is a FAKE test.