Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Last active March 12, 2016 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueleresca/f2da5b0579403d81ff6f to your computer and use it in GitHub Desktop.
Save samueleresca/f2da5b0579403d81ff6f to your computer and use it in GitHub Desktop.
module.exports = function(wallaby) {
return {
files: [
{ pattern: 'node_modules/chai/chai.js', instrument: false },
{ pattern: 'node_modules/jquery/dist/jquery.js', instrument: false },
{ pattern: 'src/**/*.js' },
],
tests: [
{ pattern: 'test/**/*.spec.js' }
],
testFramework: "mocha",
bootstrap: function() {
window.expect = chai.expect;
var should = chai.should();
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment