@applitools/eyes-sdk-core
Advanced tools
Comparing version 5.20.1 to 5.20.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [5.20.2](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.20.1...@applitools/eyes-sdk-core@5.20.2) (2019-10-07) | ||
### Bug Fixes | ||
* **eyes-sdk-core:** don't close batch if APPLITOOLS_DONT_CLOSE_BATCHES=true ([e07344f](https://github.com/applitools/eyes.sdk.javascript1/commit/e07344f)) | ||
## [5.20.1](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.20.0...@applitools/eyes-sdk-core@5.20.1) (2019-10-07) | ||
@@ -8,0 +19,0 @@ |
@@ -5,3 +5,3 @@ 'use strict'; | ||
ArgumentGuard, TypeUtils, EyesError, Region, Location, RectangleSize, CoordinatesType, ImageDeltaCompressor, | ||
SimplePropertyHandler, ReadOnlyPropertyHandler, FileDebugScreenshotsProvider, NullDebugScreenshotProvider, | ||
SimplePropertyHandler, ReadOnlyPropertyHandler, FileDebugScreenshotsProvider, NullDebugScreenshotProvider, GeneralUtils | ||
} = require('@applitools/eyes-common'); | ||
@@ -1205,2 +1205,10 @@ | ||
/** | ||
* @return {boolean} | ||
* @private | ||
*/ | ||
_getDontCloseBatches() { | ||
return GeneralUtils.getEnvValue('DONT_CLOSE_BATCHES', true) || false; | ||
} | ||
/** | ||
* @package | ||
@@ -1210,3 +1218,3 @@ * @return {Promise} | ||
async closeBatch() { | ||
if (this._configuration.getIsDisabled()) { | ||
if (this._configuration.getIsDisabled() || this._getDontCloseBatches()) { | ||
this._logger.verbose('closeBatch Ignored'); | ||
@@ -1213,0 +1221,0 @@ return; |
{ | ||
"name": "@applitools/eyes-sdk-core", | ||
"version": "5.20.1", | ||
"version": "5.20.2", | ||
"description": "The core components of Eyes JavaScript SDK", | ||
@@ -34,3 +34,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@applitools/eyes-common": "^3.11.1", | ||
"@applitools/eyes-common": "^3.11.2", | ||
"axios": "^0.19.0", | ||
@@ -50,3 +50,3 @@ "es6-promise-pool": "^2.5.0" | ||
}, | ||
"gitHead": "eb76125b1a10f9054863b9b75f72c98c7aac439a" | ||
"gitHead": "3c958a22c9341cc2642d0e839ef697e5e042967c" | ||
} |
388321
10928