From 9861c95f494f84f286cbd32b9a7fe5601d7251ab Mon Sep 17 00:00:00 2001 From: Adeel Date: Wed, 29 Oct 2014 13:52:57 +0200 Subject: [PATCH 1/2] Build: Verbose stats. --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 9457237ba..ed97bc773 100644 --- a/build.js +++ b/build.js @@ -49,7 +49,7 @@ if (!force && !process.env.SKIP_NODE_SASS_TESTS) { mocha.run(function () { // at least 90% of tests should pass if ((total - failures) * 100 / total < 90) { - console.log('Problem with the binary; manual build incoming'); + console.log('Problem with the binary: ' + failures + ' of ' + total + ' tests are failing.\nManual build incoming'); console.log('Please consider contributing the release binary to https://github.com/sass/node-sass-binaries for npm distribution.'); build(); } else { From 0a91a3ac0ba13e03f45df45f4f67af5169349293 Mon Sep 17 00:00:00 2001 From: Adeel Date: Wed, 29 Oct 2014 13:59:51 +0200 Subject: [PATCH 2/2] Code: Fixes test file name. --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index ed97bc773..cd098ed43 100644 --- a/build.js +++ b/build.js @@ -44,7 +44,7 @@ if (!force && !process.env.SKIP_NODE_SASS_TESTS) { timeout: 999999 }); - mocha.addFile(path.resolve(__dirname, 'test', 'test.js')); + mocha.addFile(path.resolve(__dirname, 'test', 'api.js')); mocha.run(function () { // at least 90% of tests should pass