diff --git a/dist/npmts.tests.js b/dist/npmts.tests.js index 6e44314..5f5a4b1 100644 --- a/dist/npmts.tests.js +++ b/dist/npmts.tests.js @@ -47,7 +47,7 @@ var coverage = function (configArg) { plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, "lcov.info")) .then(function (percentageArg) { if (percentageArg >= configArg.coverageTreshold) { - plugins.beautylog.ok("your coverage of " + percentageArg + "% " + "is within your treshold of " + + plugins.beautylog.ok("your coverage of " + percentageArg + "% " + "exceeds your treshold of " + configArg.coverageTreshold + "%"); } else { diff --git a/ts/npmts.tests.ts b/ts/npmts.tests.ts index c215b13..38b4fb9 100644 --- a/ts/npmts.tests.ts +++ b/ts/npmts.tests.ts @@ -51,7 +51,7 @@ let coverage = function(configArg){ .then(function(percentageArg){ if (percentageArg >= configArg.coverageTreshold){ plugins.beautylog.ok( - "your coverage of " + percentageArg + "% " + "is within your treshold of " + + "your coverage of " + percentageArg + "% " + "exceeds your treshold of " + configArg.coverageTreshold + "%" ); } else {