testdriverai 7.2.88 → 7.2.89
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/agent/lib/redraw.js +1 -1
- package/package.json +1 -1
package/agent/lib/redraw.js
CHANGED
|
@@ -7,7 +7,7 @@ const theme = require("./theme");
|
|
|
7
7
|
const DEFAULT_REDRAW_OPTIONS = {
|
|
8
8
|
enabled: true, // Master switch to enable/disable redraw detection
|
|
9
9
|
screenRedraw: true, // Enable screen redraw detection
|
|
10
|
-
networkMonitor:
|
|
10
|
+
networkMonitor: false, // Enable network activity monitoring
|
|
11
11
|
noChangeTimeoutMs: 1500, // Exit early if no screen change detected after this time
|
|
12
12
|
};
|
|
13
13
|
|