Skip to content

Instantly share code, notes, and snippets.

@judofyr
Created December 9, 2011 22:13
Show Gist options
  • Save judofyr/1453543 to your computer and use it in GitHub Desktop.
Save judofyr/1453543 to your computer and use it in GitHub Desktop.
Broken `buster static`
// app.js
NoBug = true;
// test/bug-test.js
buster.testCase('Buster', {
'should not be buggy': function() {
assert(NoBug);
}
});
// test/buster.js:
var config = module.exports;
config.BusterBug = {
env: "browser",
sources: ["../app.js"],
tests: ["*-test.js"]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment