mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
13 lines
512 B
JavaScript
13 lines
512 B
JavaScript
// Helper for running tests through Karma.
|
|
// Hooks into the test view logic for running tests.
|
|
|
|
|
|
window.userObject = {_id:'1'};
|
|
window.serverConfig = {picoCTF: false, production: false};
|
|
window.StripeCheckout = {configure: function (){}};
|
|
initialize = require('core/initialize');
|
|
initialize.init();
|
|
application.testing = true;
|
|
console.debug = function() {}; // Karma conf doesn't seem to work? Debug messages are still emitted when they shouldn't be.
|
|
TestView = require('views/TestView');
|
|
TestView.runTests();
|