Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix(scenario): emit RunnerBegin event
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamseshadri authored and mhevery committed Sep 11, 2012
1 parent 5dbd942 commit 95276a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ngScenario/ObjectModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ angular.scenario.ObjectModel = function(runner) {
self.emit('StepError', it, modelStep, error);
});

runner.on('RunnerBegin', function() {
self.emit('RunnerBegin');
});
runner.on('RunnerEnd', function() {
self.emit('RunnerEnd');
});
Expand Down

0 comments on commit 95276a7

Please sign in to comment.