thrill icon indicating copy to clipboard operation
thrill copied to clipboard

Fast cross-browser unit testing

Results 4 thrill issues
Sort by recently updated
recently updated
newest added

Not a bug perhaps, but this would make use of thrill much clearer. A message indicating that no tests were run would be more helpful. Steps to reproduce: - Run...

Windows tries to automatically execute JavaScript files when their name is entered in to the command prompt. Because the current config filename is "thrill.js", when a user enters `thrill` in...

enhancement

Trying to use Thrill as part of our builds, so that our unit tests run on all browsers. We're seeing a strange issue that I'm not even sure how to...

my code(file: totoro.js): ``` var thrillRunner = require('thrill').runner var cfg = { stream:false, host:"localhost:9200", run:'../../other/deck.js/test/index.html' } thrillRunner(cfg, function(passed){ if(passed instanceof Error){ throw passed; } if(passed){ process.exit(0); } else { process.exit(1);...