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 +2 -0
- package/electron/overlay.js +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
package/electron/overlay.js
CHANGED
|
@@ -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
|
-
|
|
163
|
-
|
|
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.
|
|
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": "^
|
|
53
|
+
"uuid": "^11.1.0",
|
|
54
54
|
"winston": "^3.13.0",
|
|
55
55
|
"ws": "^8.18.1"
|
|
56
56
|
},
|