I have an Angular web app that continuously listens for notifications from the backend via long-poll:
scope.notification = $resource('/notification').get();
This request never completes in the test environment. This is a problem for Protractor, because it wants to wait for all outstanding HTTP requests to finish.
I see a number of potential solutions, but have some issues with all of them.
I do not see a way to tell Protractor to ignore this request. Issuing it from $interval (which itself is ignored) is not a solution. Protractor will not wait for the request to be sent, but once it's sent, it will still wait for it to complete.
So I'm trying not to send this request when running the tests. But how do I know I'm in a test?
?protractor=true). But my web app modifies the URL all the time, so it would get cleared quickly.browser.executeScript('window.runningProtractorTests = true;'); But it seems Protractor will wait for the page to sync first before running executeScript. And I'm sending the request right away when the page loads.Protractor, for example) out of fear that my libraries may rely on interpreting the user agent string, so I'd have to figure out the right string.Is there no straightforward way to do this?
Can you put the calls to $resource into a service which you mock out using Protractor's browser.addMockModule()? That way, Protractor will always override your original service before it has a chance to run.
This could look something like
// in your application
myModule.service('myNotificationService', function($resource) {
this.notification = $resource('/notification').get();
});
// In your Protractor test
browser.addMockModule('notificatonOverride', function() {
angular.module('notificationOverride').service('myNotificationService', function() {
this.notification = {}; // or whatever you need here.
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With