@testdriverai/mcp 7.11.137-test → 7.11.138-test
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/environments.json +1 -1
- package/lib/github-comment.mjs +2 -3
- package/package.json +1 -1
package/lib/environments.json
CHANGED
package/lib/github-comment.mjs
CHANGED
|
@@ -222,9 +222,8 @@ function getReplayGifUrl(replayUrl, replayId) {
|
|
|
222
222
|
} else {
|
|
223
223
|
// Map console URLs → API URLs for all environments
|
|
224
224
|
// console-test.testdriver.ai → api-test.testdriver.ai
|
|
225
|
-
// console
|
|
226
|
-
|
|
227
|
-
const consoleEnvMatch = replayUrl.match(/https:\/\/console-(test|canary)\.testdriver\.ai/);
|
|
225
|
+
// console.testdriver.ai → api.testdriver.ai (stable and canary share this console)
|
|
226
|
+
const consoleEnvMatch = replayUrl.match(/https:\/\/console-(test)\.testdriver\.ai/);
|
|
228
227
|
if (consoleEnvMatch) {
|
|
229
228
|
apiBaseUrl = `https://api-${consoleEnvMatch[1]}.testdriver.ai`;
|
|
230
229
|
} else if (replayUrl.includes('console.testdriver.ai')) {
|