@test-lab-ai/cli 0.2.10 → 0.2.11
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 +11 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -130,16 +130,20 @@ and `testlab skills update` re-installs the bundled version on demand.
|
|
|
130
130
|
|
|
131
131
|
### Example prompts
|
|
132
132
|
|
|
133
|
-
With the skill installed,
|
|
134
|
-
|
|
133
|
+
With the skill installed, invoke it and describe the test in plain language. In
|
|
134
|
+
Claude Code: `/test-lab-plan`; in Codex or Cursor, just mention test-lab.
|
|
135
135
|
|
|
136
|
-
|
|
137
|
-
- "Add a test-lab smoke test for our /login page (the test creds are already in test-lab), then import it."
|
|
136
|
+
Create a test for a feature you just built:
|
|
138
137
|
|
|
139
|
-
|
|
138
|
+
```
|
|
139
|
+
/test-lab-plan write a test for the signup flow at https://app.example.com/signup, then create it in my account
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Import tests you already have:
|
|
140
143
|
|
|
141
|
-
|
|
142
|
-
-
|
|
144
|
+
```
|
|
145
|
+
/test-lab-plan convert the Playwright specs in ./tests/e2e into test-lab plans and import them
|
|
146
|
+
```
|
|
143
147
|
|
|
144
148
|
## For AI agents
|
|
145
149
|
|