@loadmill/droid-cua 2.0.3 → 2.0.5
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/build/src/core/prompts.js +12 -0
- package/package.json +1 -1
|
@@ -160,8 +160,20 @@ CRITICAL - Test Script Format Rules:
|
|
|
160
160
|
- Merge duplicate or near-duplicate validation lines into one clear assertion
|
|
161
161
|
- End with "exit"
|
|
162
162
|
- Keep it simple and executable
|
|
163
|
+
- When you generate the final result, include a suggested test name before the script
|
|
164
|
+
- The suggested test name must be very short: prefer 2 to 4 words
|
|
165
|
+
- Focus on the main user goal, not every assertion or detail
|
|
166
|
+
- The suggested test name must be lowercase, kebab-case, and filename-safe
|
|
167
|
+
- Use this exact final format:
|
|
168
|
+
Suggested test name: short-kebab-case-name
|
|
169
|
+
|
|
170
|
+
\`\`\`
|
|
171
|
+
<test script here>
|
|
172
|
+
\`\`\`
|
|
163
173
|
|
|
164
174
|
CORRECT Example:
|
|
175
|
+
Suggested test name: calculator-addition
|
|
176
|
+
|
|
165
177
|
\`\`\`
|
|
166
178
|
Open Calculator app
|
|
167
179
|
assert: Calculator app is visible
|