better wording

This commit is contained in:
Philipp Kunz 2016-03-30 01:35:20 +02:00
parent bf20ad9e61
commit 9e8fc76623
2 changed files with 2 additions and 2 deletions

2
dist/npmts.tests.js vendored
View File

@ -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 {

View File

@ -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 {