We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a36b454 commit d141d5cCopy full SHA for d141d5c
Cakefile
@@ -407,12 +407,14 @@ runTests = (CoffeeScript) ->
407
408
409
task 'test', 'run the CoffeeScript language test suite', ->
410
- runTests CoffeeScript
+ testResults = runTests CoffeeScript
411
+ process.exit 1 unless testResults
412
413
414
task 'test:browser', 'run the test suite against the merged browser script', ->
415
source = fs.readFileSync "docs/v#{majorVersion}/browser-compiler/coffee-script.js", 'utf-8'
416
result = {}
417
global.testingBrowser = yes
418
(-> eval source).call result
- runTests result.CoffeeScript
419
+ testResults = runTests result.CoffeeScript
420
0 commit comments