###
coffee -cb /opt/node/bb/dev/node_modules/atbar/atbar.cof
coffee -cb /opt/node/bb/dev/node_modules/atbar/tests/throw-error.cof
###

atbar = require 'atbar'

atbar.run 'trace', -> 
	@_ -> setTimeout @$(), 2000
	@_ -> throw 'I am a real javascript exception'
	@_ -> console.log 'you should not see this'
, (err, resp) -> console.log 'atbar final callback: ' + err
