testdriverai 7.2.23 → 7.2.24

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/docs/docs.json CHANGED
@@ -19,8 +19,8 @@
19
19
  {
20
20
  "group": "Overview",
21
21
  "pages": [
22
- "/v7/what-is-testdriver",
23
22
  "/v7/quickstart",
23
+ "/v7/what-is-testdriver",
24
24
  "/v7/examples",
25
25
  {
26
26
  "group": "Plans & Pricing",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.2.23",
3
+ "version": "7.2.24",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "exports": {
@@ -1,8 +1,3 @@
1
- /**
2
- * TestDriver SDK - Launch VS Code on Linux Test (Vitest)
3
- * Tests launching Visual Studio Code on Debian/Ubuntu using provision.vscode()
4
- */
5
-
6
1
  import { describe, expect, it } from "vitest";
7
2
  import { TestDriver } from "../../lib/vitest/hooks.mjs";
8
3
 
@@ -33,13 +28,13 @@ describe("Launch VS Code on Linux", () => {
33
28
  await testdriver.provision.vscode({
34
29
  extensions: ["esbenp.prettier-vscode"],
35
30
  });
36
- Wait for VS Code to launch (polls every 5s until found or timeout)
31
+
37
32
  const vsCodeWindow = await testdriver.find(
38
33
  "Visual Studio Code window",
39
34
  { timeout: 60000 }
40
35
  );
41
- expect(vsCodeWindow.found()
42
- expect(vsCodeVisible).toBeTruthy();
36
+
37
+ expect(vsCodeWindow.found()).toBeTruthy();
43
38
 
44
39
  // Open the extensions panel to verify Prettier is installed
45
40
  await testdriver.pressKeys(["ctrl", "shift", "x"]);