testdriverai 7.8.0-test.70 → 7.8.0-test.71
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/lib/init-project.js +4 -6
- package/package.json +2 -1
package/lib/init-project.js
CHANGED
|
@@ -324,11 +324,9 @@ jobs:
|
|
|
324
324
|
[
|
|
325
325
|
"--yes",
|
|
326
326
|
"add-mcp",
|
|
327
|
+
"testdriverai",
|
|
328
|
+
"-n",
|
|
327
329
|
"testdriver",
|
|
328
|
-
"--command",
|
|
329
|
-
"npx -p testdriverai testdriverai-mcp",
|
|
330
|
-
"--env",
|
|
331
|
-
"TD_API_KEY",
|
|
332
330
|
],
|
|
333
331
|
{
|
|
334
332
|
cwd: targetDir,
|
|
@@ -340,10 +338,10 @@ jobs:
|
|
|
340
338
|
if (addMcpResult.status === 0) {
|
|
341
339
|
progress("✓ MCP configured via add-mcp");
|
|
342
340
|
} else if (addMcpResult.status !== null) {
|
|
343
|
-
progress("⚠ MCP setup skipped or failed - you can run 'npx add-mcp
|
|
341
|
+
progress("⚠ MCP setup skipped or failed - you can run 'npx add-mcp testdriverai' later");
|
|
344
342
|
}
|
|
345
343
|
} catch (err) {
|
|
346
|
-
progress("⚠ Could not run add-mcp - you can run 'npx add-mcp
|
|
344
|
+
progress("⚠ Could not run add-mcp - you can run 'npx add-mcp testdriverai' later");
|
|
347
345
|
}
|
|
348
346
|
}
|
|
349
347
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testdriverai",
|
|
3
|
-
"version": "7.8.0-test.
|
|
3
|
+
"version": "7.8.0-test.71",
|
|
4
4
|
"description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
|
|
5
5
|
"main": "sdk.js",
|
|
6
6
|
"types": "sdk.d.ts",
|
|
@@ -116,6 +116,7 @@
|
|
|
116
116
|
},
|
|
117
117
|
"overrides": {
|
|
118
118
|
"glob": "^11.0.1",
|
|
119
|
+
"obug": "2.1.0",
|
|
119
120
|
"rimraf": "^5.0.10"
|
|
120
121
|
},
|
|
121
122
|
"peerDependencies": {
|