@@ -43,8 +43,8 @@ angular.scenario.Runner.prototype.describe = function(name, body) {
4343 * @param {String } Name of the block
4444 * @param {Function } Body of the block
4545 */
46- angular . scenario . Runner . prototype . it = function ( name , body ) {
47- this . currentDescribe . it ( name , body ) ;
46+ angular . scenario . Runner . prototype . it = function ( name , body ) {
47+ this . currentDescribe . it ( name , body ) ;
4848} ;
4949
5050/**
@@ -54,7 +54,7 @@ angular.scenario.Runner.prototype.it = function(name, body) {
5454 * @param {Function } Callback to execute
5555 */
5656angular . scenario . Runner . prototype . beforeEach = function ( body ) {
57- this . currentDescribe . beforeEach ( body ) ;
57+ this . currentDescribe . beforeEach ( body ) ;
5858} ;
5959
6060/**
@@ -64,7 +64,7 @@ angular.scenario.Runner.prototype.beforeEach = function(body) {
6464 * @param {Function } Callback to execute
6565 */
6666angular . scenario . Runner . prototype . afterEach = function ( body ) {
67- this . currentDescribe . afterEach ( body ) ;
67+ this . currentDescribe . afterEach ( body ) ;
6868} ;
6969
7070/**
@@ -79,7 +79,7 @@ angular.scenario.Runner.prototype.run = function(ui, application, specRunnerClas
7979 var specs = this . rootDescribe . getSpecs ( ) ;
8080 $root . application = application ;
8181 $root . ui = ui ;
82- $root . setTimeout = function ( ) {
82+ $root . setTimeout = function ( ) {
8383 return self . $window . setTimeout . apply ( self . $window , arguments ) ;
8484 } ;
8585 asyncForEach ( specs , angular . bind ( this , function ( spec , specDone ) {
@@ -88,7 +88,7 @@ angular.scenario.Runner.prototype.run = function(ui, application, specRunnerClas
8888 angular . foreach ( angular . scenario . dsl , angular . bind ( this , function ( fn , key ) {
8989 this . $window [ key ] = function ( ) {
9090 return fn . call ( $root ) . apply ( angular . scope ( runner ) , arguments ) ;
91- }
91+ } ;
9292 } ) ) ;
9393 runner . run ( ui , spec , specDone ) ;
9494 } ) , specsDone || angular . noop ) ;
0 commit comments