testdriverai 4.1.18 → 4.1.19

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.
Files changed (2) hide show
  1. package/lib/redraw.js +3 -1
  2. package/package.json +1 -1
package/lib/redraw.js CHANGED
@@ -135,7 +135,9 @@ function wait(timeoutMs) {
135
135
  }
136
136
 
137
137
  (async () => {
138
- await si.powerShellStart();
138
+ if (os.platform() === 'win32') {
139
+ si.powerShellStart();
140
+ }
139
141
  setInterval(updateNetwork, networkUpdateInterval);
140
142
  })();
141
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "4.1.18",
3
+ "version": "4.1.19",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "index.js",
6
6
  "bin": {