@applitools/eyes-testcafe
Advanced tools
Comparing version 1.1.12 to 1.1.13
v1.1.12 / 2019-07-21 | ||
==================== | ||
* 1.1.12 [[a82f6c8](/commit/a82f6c8ab973967947f0a99fc94a896b3e6d5dd8)] | ||
* fixed empty tests print [[3f131d5](/commit/3f131d5b8a0acf92e1a10cb418375793017bad0c)] | ||
* changelog [[aea786a](/commit/aea786aaf8803741b48dcf92abb2614463a33b62)] | ||
v1.1.11 / 2019-07-18 | ||
@@ -3,0 +10,0 @@ ==================== |
{ | ||
"name": "@applitools/eyes-testcafe", | ||
"version": "1.1.12", | ||
"version": "1.1.13", | ||
"description": "Eyes Testcafe SDK", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -51,6 +51,10 @@ 'use strict'; | ||
See details at ${nonEmptyResult.getAppUrls().getBatch()}\n`; | ||
} else { | ||
outputStr += `\nYour tests do not contain visual checks! make sure that the test conatains 'eyes.checkWindow' calls and that they are awaited upon.\n`; | ||
} | ||
if (!nonEmptyResult && !errors.length) { | ||
outputStr += chalk.yellow( | ||
`\nYour tests do not contain visual checks! make sure that the test conatains 'eyes.checkWindow' calls and that they are awaited upon.\n`, | ||
); | ||
} | ||
console.log(outputStr); | ||
@@ -57,0 +61,0 @@ } |
92249
1194