From ce7c0d176bbb35f6da0c0bac63a015d8f486ab5b Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 21 Mar 2010 10:18:23 -0400 Subject: [PATCH] briefer test runner output --- Cakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cakefile b/Cakefile index 6c2a51a0..7203b8f8 100644 --- a/Cakefile +++ b/Cakefile @@ -93,7 +93,7 @@ task 'test', 'run the CoffeeScript language test suite', -> files.forEach (file) -> return unless file.match(/\.coffee$/i) source: path.join 'test', file - print " " + source + " ... " + print " $file " code = fs.readFileSync source try CoffeeScript.run code, {source: source}