AlphaEarly preview — features may change

[TEST-MODES]

Different ways to test your app.

Standard Test

The default mode. GetWired explores your app like a chaotic human — clicking random links, submitting empty forms, entering XSS payloads, rage-clicking buttons, resizing windows to absurd dimensions. It reports everything it breaks.

$ getwired test

Scoped Test

Focus testing on a specific area of your app. Useful when you know what you changed and want targeted chaos.

$ getwired test --scope checkout

Regression Test

Compare the current state of your app against a previous baseline. GetWired takes screenshots and runs the same scenarios, then diffs the results to find regressions.

$ getwired test --commit HEAD~1

PR Test

Test against a specific pull request. GetWired checks out the PR branch, runs against it, and compares with the base branch to find issues introduced by the PR.

$ getwired test --pr 42

Device Profiles

Test on desktop, mobile, or both. GetWired uses real browser profiles via agent-browser to simulate different devices and screen sizes.

$ getwired test --device mobile