blob: 5cebe783761a42d7a91070204b2b5389dbb56d38 [file] [log] [blame]
// vim: set ft=javascript:
// Set the require.js configuration for your test setup.
require.config(
<%= JSON.stringify(configInfo, null, '\t') %>
);
require([
"app",
<% _.each(testFiles, function (test) {%>
'../<%= test %>',
<% }) %>
], function() {
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
});