@applitools/eyes-sdk-core
Advanced tools
Comparing version 5.18.0 to 5.18.1
@@ -6,2 +6,13 @@ # Change Log | ||
## [5.18.1](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.18.0...@applitools/eyes-sdk-core@5.18.1) (2019-09-27) | ||
### Bug Fixes | ||
* **eyes-sdk-core:** do not closeBatch in disabled mode ([454e306](https://github.com/applitools/eyes.sdk.javascript1/commit/454e306)) | ||
# [5.18.0](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.17.3...@applitools/eyes-sdk-core@5.18.0) (2019-09-23) | ||
@@ -8,0 +19,0 @@ |
@@ -1208,2 +1208,7 @@ 'use strict'; | ||
async closeBatch() { | ||
if (this._configuration.getIsDisabled()) { | ||
this._logger.verbose('closeBatch Ignored'); | ||
return; | ||
} | ||
if (this._configuration._batch) { // if use .getBatch(), it will create an empty batch. If session is open, batch should exists | ||
@@ -1210,0 +1215,0 @@ const batchId = this._configuration._batch.getId(); |
{ | ||
"name": "@applitools/eyes-sdk-core", | ||
"version": "5.18.0", | ||
"version": "5.18.1", | ||
"description": "The core components of Eyes JavaScript SDK", | ||
@@ -49,3 +49,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "ab7d1f5551f9d947d6f62fe2e28b3dd3cbc536aa" | ||
"gitHead": "e123670e781ddc30841f907d718261647290b618" | ||
} |
385204
10860