Patch Changes
-
5d43046: A request that runs out of time now says it timed out and how long it waited, instead of reporting an unreachable host and sending you to check your network and
QAWOLF_HOST_URL.Behind that, a call can now carry its own deadline rather than sharing one fifteen-second limit with everything else. Nothing changes for calls the platform answers from its database, which is all of them today; the endpoints whose work genuinely takes longer can ask for the time they need.
-
ba45b94: Stage flow files correctly on Windows. Flow discovery returned forward-slash paths from the glob, while the rest of the CLI builds paths with
node:pathand gets backslashes. The staging step compared the two, never matched, and returned the original source path.qawolf flows runthen executed flows from the project tree instead of the prepared run directory, so a flow resolved whatever Playwright the project had installed rather than the pinned executor, and a flow importing#playwrightfailed. Flow discovery now returns one canonical path form. -
e7cf799: Find Playwright and Appium correctly on Windows. The CLI accepted two shim names: the
.cmdwrapper npm writes, and the extension-less POSIX script. It missed the.exeshimbun installwrites, soqawolf doctorreported Playwright as missing, andqawolf flows runandqawolf install browsersfailed on a project installed with bun. It also counted the extension-less script as usable, which Windows cannot launch —CreateProcessreportsENOENTfor a path with no executable extension, even when the file is present.qawolf doctorthen reported Playwright as installed, andqawolf flows runfailed with an error naming a file the user can see on disk. Both bugs also gated the pinned-dependency check, so the CLI either reinstalled its runtime on every run or read an unusable directory as fully installed.appiumcarried the same names and the same two bugs, which broke Android flows andqawolf install android. The CLI now looks only for the.cmdand.exeshims on Windows. A project whosenode_modules/.binholds only the extension-less shim is now rejected, and the CLI installs its managed runtime instead. That affects a tree installed on Linux or macOS and then used from Windows, through a bind mount, a copied directory, or WSL. A project installed on Windows by npm or bun is unaffected. -
e7cf799: Fix
ENOENTwhen the CLI spawns npm, Appium, or the Android SDK tools on Windows.qawolf flows runfailed while preparing the environment.qawolf doctorreported npm andappiumas not installed, even though both worked in the same shell.qawolf install androidcould not reachsdkmanageroravdmanager. Windows ships these tools as.cmdor.batwrappers and ships no.exealternative. Node's process spawn cannot execute a batch file directly. The CLI now names the wrapper file and runs it throughcmd.exe /d /s /cwith quoted arguments. Theadbandemulatorpaths built fromANDROID_HOMEnow name the.exesuffix directly instead of relying on the spawn path search. Running the CLI inside WSL is unaffected, because it reports itself as Linux and carries POSIX tools.