Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorZac Echola <zac.echola@gmail.com>2014-09-26 05:53:41 +0400
committerZac Echola <zac.echola@gmail.com>2014-09-26 05:53:41 +0400
commit4d4c31c16e0ca3384654edab84e2eb68faf54e07 (patch)
treef6f4b239391df6bedf23acc226acbfa82b808dfc /test
parent0ce0964a1a87e135b229a64939c345ad0295adcf (diff)
fix #7
Diffstat (limited to 'test')
-rw-r--r--test/bootlint_test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bootlint_test.js b/test/bootlint_test.js
index 7654c5c..2abb96e 100644
--- a/test/bootlint_test.js
+++ b/test/bootlint_test.js
@@ -67,8 +67,8 @@ exports.bootlint = {
}, function(err, result) {
test.ok(result.stdout.indexOf("is OK") >= 0,
'Should print filepath is OK!');
- test.ok(result.stdout.indexOf("All Done!") >= 0,
- 'Should print All Done! message');
+ test.ok(result.stdout.indexOf("No Bootlint errors!") >= 0,
+ 'Should print "No Bootlint errors!" message');
test.done();
});
},