mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:06:50 +00:00
33 lines
1.7 KiB
JavaScript
33 lines
1.7 KiB
JavaScript
define(['mifosX', 'angular-mocks'], {
|
|
configure: function (scenarioName) {
|
|
require(["test/testHelper", "test/scenarios/" + scenarioName + "_scenario"], function (testHelper, scenario) {
|
|
mifosX.ng.application.config(function ($provide) {
|
|
$provide.decorator('$httpBackend', angular.mock.e2e.$httpBackendDecorator);
|
|
$provide.decorator('$httpBackend', function ($delegate) {
|
|
function proxy(method, url, data, callback, headers) {
|
|
var interceptor = function (returnCode, responseData, responseHeaders) {
|
|
var self = this, args = arguments;
|
|
if (_.isNumber(proxy.responseDelay) && proxy.responseDelay > 0) {
|
|
setTimeout(function () {
|
|
callback.apply(self, args);
|
|
}, proxy.responseDelay * 1000);
|
|
} else {
|
|
callback.apply(self, args);
|
|
}
|
|
};
|
|
return $delegate.call(this, method, url, data, interceptor, headers);
|
|
};
|
|
_.each(_.keys($delegate), function (key) {
|
|
proxy[key] = $delegate[key];
|
|
});
|
|
return proxy;
|
|
});
|
|
}).run(function ($httpBackend, $log) {
|
|
$log.warn("Running test scenario: " + scenarioName);
|
|
$httpBackend.when("GET", /\.html$/).passThrough();
|
|
scenario.stubServer(new testHelper.FakeServer($httpBackend));
|
|
});
|
|
angular.bootstrap(document, ["MifosX_Application"]);
|
|
});
|
|
}
|
|
}); |