Skip to content

Commit

Permalink
Merge pull request #185 from pelias/display-improvements-in-quiet
Browse files Browse the repository at this point in the history
Display improvements in quiet mode
  • Loading branch information
orangejulius authored Apr 24, 2020
2 parents b30f4b3 + 1873edf commit 7a68b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion output_generators/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function prettyPrintTestCase( testCase, quiet ){
var status = (result.progress === undefined) ? '' : result.progress.inverse + ' ';
switch( result.result ){
case 'pass':
if (!quiet) {
if (!quiet || result.progress === 'improvement') {
console.log(util.format(' ✔ %s[%s] "%s"', status, id, testDescription).green);
}
break;
Expand Down

0 comments on commit 7a68b90

Please sign in to comment.