mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-17 15:40:22 +00:00
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
angular.scenario.testing = angular.scenario.testing || {};
|
|
|
|
angular.scenario.testing.MockAngular = function() {
|
|
this.reset();
|
|
this.service = this;
|
|
};
|
|
|
|
angular.scenario.testing.MockAngular.prototype.reset = function() {
|
|
this.log = [];
|
|
};
|
|
|
|
angular.scenario.testing.MockAngular.prototype.$browser = function() {
|
|
this.log.push('$brower()');
|
|
return this;
|
|
};
|
|
|
|
angular.scenario.testing.MockAngular.prototype.poll = function() {
|
|
this.log.push('$brower.poll()');
|
|
return this;
|
|
};
|
|
|
|
angular.scenario.testing.MockAngular.prototype.notifyWhenNoOutstandingRequests = function(fn) {
|
|
this.log.push('$brower.notifyWhenNoOutstandingRequests()');
|
|
fn();
|
|
};
|
|
|
|
angular.scenario.testing.MockRunner = function() {
|
|
this.listeners = [];
|
|
};
|
|
|
|
angular.scenario.testing.MockRunner.prototype.on = function(eventName, fn) {
|
|
this.listeners[eventName] = this.listeners[eventName] || [];
|
|
this.listeners[eventName].push(fn);
|
|
};
|
|
|
|
angular.scenario.testing.MockRunner.prototype.emit = function(eventName) {
|
|
var args = Array.prototype.slice.call(arguments, 1);
|
|
angular.forEach(this.listeners[eventName] || [], function(fn) {
|
|
fn.apply(this, args);
|
|
});
|
|
};
|