@testdriverai/mcp 7.9.176-test → 7.9.178-canary

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.
@@ -724,7 +724,7 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
724
724
  'Slot denied: ' + (slotDecision.data.message || 'concurrency limit reached') +
725
725
  ' — gave up after ' + Math.round(elapsed / 1000) + 's ' +
726
726
  '(max wait ' + (concurrencyMaxWait / 1000) + 's). ' +
727
- 'Upgrade for more slots → https://console.testdriver.ai/checkout/team'
727
+ 'Upgrade for more slots → https://console.testdriver.ai/checkout/pro'
728
728
  );
729
729
  giveUpErr.responseData = slotDecision.data;
730
730
  throw giveUpErr;
@@ -734,7 +734,7 @@ const createSandbox = function (emitter, analytics, sessionInstance) {
734
734
  ' — waiting ' + (concurrencyRetryInterval / 1000) + 's before retrying' +
735
735
  ' (' + Math.round(elapsed / 1000) + 's elapsed)...'
736
736
  );
737
- logger.log('Upgrade for more slots → https://console.testdriver.ai/checkout/team');
737
+ logger.log('Upgrade for more slots → https://console.testdriver.ai/checkout/pro');
738
738
  try {
739
739
  if (this._ably) this._ably.close();
740
740
  this._ably = null;
package/docs/v7/ci-cd.mdx CHANGED
@@ -673,7 +673,7 @@ Raise `TD_CONCURRENCY_MAX_WAIT` when you run more parallel jobs than your plan h
673
673
  slots and would rather they queue than fail. Set it to `0` when you'd prefer a job
674
674
  to **fail fast** on a busy account (e.g. a quick smoke test that shouldn't sit
675
675
  waiting). When jobs routinely give up waiting, that's the signal to
676
- [add more slots](https://console.testdriver.ai/checkout/team).
676
+ [add more slots](https://console.testdriver.ai/checkout/pro).
677
677
  </Tip>
678
678
 
679
679
  ## Viewing Results
@@ -22,34 +22,34 @@ describe("Launch VS Code on Linux", () => {
22
22
  },
23
23
  );
24
24
 
25
- it.skipIf(!isLinux)(
26
- "should install and use a VS Code extension",
27
- async (context) => {
28
- const testdriver = TestDriver(context, { ...getDefaults(context) });
25
+ // it.skipIf(!isLinux)(
26
+ // "should install and use a VS Code extension",
27
+ // async (context) => {
28
+ // const testdriver = TestDriver(context, { ...getDefaults(context) });
29
29
 
30
- // Launch VS Code with the Prettier extension installed
31
- await testdriver.provision.vscode({
32
- extensions: ["esbenp.prettier-vscode"],
33
- });
30
+ // // Launch VS Code with the Prettier extension installed
31
+ // await testdriver.provision.vscode({
32
+ // extensions: ["esbenp.prettier-vscode"],
33
+ // });
34
34
 
35
- const vsCodeWindow = await testdriver.find(
36
- "Visual Studio Code window",
37
- { timeout: 60000 }
38
- );
35
+ // const vsCodeWindow = await testdriver.find(
36
+ // "Visual Studio Code window",
37
+ // { timeout: 60000 }
38
+ // );
39
39
 
40
- expect(vsCodeWindow.found()).toBeTruthy();
40
+ // expect(vsCodeWindow.found()).toBeTruthy();
41
41
 
42
- // Open the extensions panel to verify Prettier is installed
43
- await testdriver.pressKeys(["ctrl", "shift", "x"]);
42
+ // // Open the extensions panel to verify Prettier is installed
43
+ // await testdriver.pressKeys(["ctrl", "shift", "x"]);
44
44
 
45
- // Wait for extensions panel to open
46
- await new Promise((resolve) => setTimeout(resolve, 2000));
47
-
48
- // Assert that Prettier extension is visible in the installed extensions
49
- const prettierVisible = await testdriver.assert(
50
- "Prettier extension is visible in the extensions panel or sidebar",
51
- );
52
- expect(prettierVisible).toBeTruthy();
53
- },
54
- );
45
+ // // Wait for extensions panel to open
46
+ // await new Promise((resolve) => setTimeout(resolve, 2000));
47
+
48
+ // // Assert that Prettier extension is visible in the installed extensions
49
+ // const prettierVisible = await testdriver.assert(
50
+ // "Prettier extension is visible in the extensions panel or sidebar",
51
+ // );
52
+ // expect(prettierVisible).toBeTruthy();
53
+ // },
54
+ // );
55
55
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testdriverai/mcp",
3
- "version": "7.9.176-test",
3
+ "version": "7.9.178-canary",
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",