testdriverai 5.7.25 → 5.7.27

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/README.md CHANGED
@@ -153,3 +153,5 @@ gh pr create --web
153
153
  ```
154
154
 
155
155
  Your test will run on every commit and the results will be posted as a Dashcam.io video within your GitHub summary! Learn more about deploying on CI [here](https://docs.testdriver.ai/action/setup).
156
+
157
+
@@ -114,7 +114,6 @@ app.whenReady().then(() => {
114
114
  // window.webContents.openDevTools();
115
115
 
116
116
  ipc.serve(() => {
117
- console.error("Serving IPC");
118
117
  for (const event of eventsArray) {
119
118
  ipc.server.on(event, (data) => {
120
119
  if (event === "show-window") {
@@ -137,7 +136,6 @@ app.whenReady().then(() => {
137
136
  );
138
137
 
139
138
  ipc.server.on("connect", () => {
140
- console.error("Client connected");
141
139
  clearTimeout(timeout);
142
140
  });
143
141
 
@@ -159,7 +157,9 @@ app.whenReady().then(() => {
159
157
  });
160
158
 
161
159
  function exit(code = 0, reason = "") {
162
- console.error(`Exiting with code ${code} and reason: "${reason}"`);
163
- console.log(`Exiting with code ${code} and reason: "${reason}"`);
160
+ if (code && reason) {
161
+ console.error(`Exiting with code ${code} and reason: "${reason}"`);
162
+ }
163
+
164
164
  process.exit(code);
165
165
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "5.7.25",
3
+ "version": "5.7.27",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -50,7 +50,7 @@
50
50
  "systeminformation": "^5.23.5",
51
51
  "tmp": "^0.2.3",
52
52
  "totp-generator": "^1.0.0",
53
- "uuid": "^10.0.0",
53
+ "uuid": "^11.1.0",
54
54
  "winston": "^3.13.0",
55
55
  "ws": "^8.18.1"
56
56
  },