testaro 59.2.4 → 59.2.5

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/package.json +1 -1
  2. package/run.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testaro",
3
- "version": "59.2.4",
3
+ "version": "59.2.5",
4
4
  "description": "Run 1000 web accessibility tests from 11 tools and get a standardized report",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/run.js CHANGED
@@ -289,7 +289,7 @@ const launch = exports.launch = async (report, debug, waits, tempBrowserID, temp
289
289
  // Create a diagnostic listener for its unintentional closing.
290
290
  browserContext.on('close', () => {
291
291
  if (! browserCloseIntentional) {
292
- console.log(new Error('Browser context closed').stack);
292
+ console.log('ERROR: Browser context unexpectedly closed');
293
293
  }
294
294
  });
295
295
  // Prevent default timeouts.