Example #1
0
 Ember.run(function(){
   application = startApp();
   TestHelper.setup();
   authenticateSession();
   originalAlert = window.confirm; // store a reference to the window.confirm
   window.confirm = function(text) {
     savedText = text;
     return true;
   };
 });
Example #2
0
 Ember.run(function(){
   application = startApp();
   TestHelper.setup();
 });
Example #3
0
 Ember.run(function(){
   application = startApp();
   TestHelper.setup();
   authenticateSession();
 });