@supatest/cli 0.0.59 → 0.0.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/index.js +2080 -2161
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -15,8 +15,27 @@ Supatest AI is an AI-powered CLI that helps you write and maintain E2E tests. Us
|
|
|
15
15
|
## Requirements
|
|
16
16
|
|
|
17
17
|
- **Node.js 18+** - [Download Node.js](https://nodejs.org/)
|
|
18
|
+
- **Git** - [Install Git](https://git-scm.com/downloads) (required for the agent to analyze your codebase)
|
|
18
19
|
- **Supatest Account** - [Sign up at supatest.ai](https://supatest.ai)
|
|
19
20
|
|
|
21
|
+
### Windows-Specific Setup
|
|
22
|
+
|
|
23
|
+
The CLI requires **Git Bash** on Windows. Install [Git for Windows](https://git-scm.com/downloads/win) which includes it.
|
|
24
|
+
|
|
25
|
+
If Git is installed but not in your PATH (e.g. `where git` returns nothing), add it permanently in PowerShell:
|
|
26
|
+
|
|
27
|
+
```powershell
|
|
28
|
+
# Add Git to PATH
|
|
29
|
+
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\Users\<username>\AppData\Local\Programs\Git\cmd", "User")
|
|
30
|
+
|
|
31
|
+
# Set Git Bash path for the CLI
|
|
32
|
+
[Environment]::SetEnvironmentVariable("CLAUDE_CODE_GIT_BASH_PATH", "C:\Users\<username>\AppData\Local\Programs\Git\bin\bash.exe", "User")
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Restart your terminal after running these commands.
|
|
36
|
+
|
|
37
|
+
**Troubleshooting:** If you see `Claude Code on Windows requires git-bash`, Git Bash is either not installed or not found. Set `CLAUDE_CODE_GIT_BASH_PATH` to point to your `bash.exe` location.
|
|
38
|
+
|
|
20
39
|
## Getting Started
|
|
21
40
|
|
|
22
41
|
### 1. Install
|