@testdriverai/mcp 7.11.8-test → 7.11.9-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.
@@ -23,12 +23,11 @@ Hosted pricing is based on **device-seconds**: the amount of time your tests run
23
23
  </Card>
24
24
 
25
25
  <Card title="Pro" icon="rocket" href="https://console.testdriver.ai/checkout/pro">
26
- **$20/month**
26
+ **$20/month per user**
27
27
 
28
28
  - 2 Concurrent Sandboxes
29
29
  - 600 Minutes Included
30
- - Overage: $0.002/second
31
- - 1 Team User
30
+ - Overage: $0.001/second
32
31
  - Test Recordings
33
32
  - Community Support
34
33
  </Card>
@@ -23,12 +23,11 @@ Hosted pricing is based on **device-seconds**: the amount of time your tests run
23
23
  </Card>
24
24
 
25
25
  <Card title="Pro" icon="rocket" href="https://console.testdriver.ai/checkout/pro">
26
- **$20/month**
26
+ **$20/month per user**
27
27
 
28
28
  - 2 Concurrent Sandboxes
29
29
  - 600 Minutes Included
30
- - Overage: $0.002/second
31
- - 1 Team User
30
+ - Overage: $0.001/second
32
31
  - Test Recordings
33
32
  - Community Support
34
33
  </Card>
@@ -27,7 +27,6 @@ We specialize in testing scenarios that other tools can't handle - desktop appli
27
27
  TestDriver Enterprise plans start at **$2,000/month** and include:
28
28
 
29
29
  - A pilot program with our expert team to create 4 custom tests within your first 4 weeks (4x4 Guarantee).
30
- - 4 parallel tests
31
30
  - **12,500 runner minutes per month**: Sufficient capacity for continuous testing of your custom test suite.
32
31
  - Full CI/CD pipeline integration with custom configurations.
33
32
  - Dedicated infrastructure and ongoing support for complex testing scenarios.
@@ -25,12 +25,11 @@ Hosted pricing is based on **device-seconds**: the amount of time your tests run
25
25
  </Card>
26
26
 
27
27
  <Card title="Pro" icon="rocket" href="https://console.testdriver.ai/checkout/pro">
28
- **$20/month**
28
+ **$20/month per user**
29
29
 
30
30
  - 2 Concurrent Sandboxes
31
31
  - 600 Minutes Included
32
- - Overage: $0.002/second
33
- - 1 Team User
32
+ - Overage: $0.001/second
34
33
  - Test Recordings
35
34
  - Community Support
36
35
  </Card>
@@ -1480,6 +1480,24 @@ function getGitInfo() {
1480
1480
  if (process.env.GITHUB_REF_NAME) info.branch = process.env.GITHUB_REF_NAME;
1481
1481
  if (process.env.GITHUB_SHA) info.commit = process.env.GITHUB_SHA;
1482
1482
  if (process.env.GITHUB_ACTOR) info.author = process.env.GITHUB_ACTOR;
1483
+
1484
+ // The GitHub account the run is attributed to. Sent separately from
1485
+ // `author` — which is the same value here but means "git display name"
1486
+ // outside GitHub CI — so the API has one unambiguous field to bill per
1487
+ // GitHub user on. The API still falls back to `author` for SDKs older
1488
+ // than this, so don't assume this field is always present server-side.
1489
+ if (process.env.GITHUB_ACTOR) info.githubActor = process.env.GITHUB_ACTOR;
1490
+ if (process.env.GITHUB_RUN_ID) info.githubRunId = process.env.GITHUB_RUN_ID;
1491
+ if (process.env.GITHUB_RUN_ATTEMPT) {
1492
+ info.githubRunAttempt = Number(process.env.GITHUB_RUN_ATTEMPT);
1493
+ }
1494
+ // Exported to $GITHUB_ENV by the testdriver action after it verifies the
1495
+ // OIDC token (see `action/action.yml`). GitHub itself provides no
1496
+ // GITHUB_ACTOR_ID env var, so this is absent whenever the caller
1497
+ // authenticated with a bare TD_API_KEY secret instead of our action.
1498
+ if (process.env.TD_GITHUB_ACTOR_ID) {
1499
+ info.githubActorId = process.env.TD_GITHUB_ACTOR_ID;
1500
+ }
1483
1501
  } else if (process.env.GITLAB_CI) {
1484
1502
  if (process.env.CI_PROJECT_PATH) info.repo = process.env.CI_PROJECT_PATH;
1485
1503
  if (process.env.CI_COMMIT_BRANCH)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testdriverai/mcp",
3
- "version": "7.11.8-test",
3
+ "version": "7.11.9-test",
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",