You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The proxy will serve the content from http://localhost:8080/home/myApp/ under the url http://localhost:9876/my but not do a redirect which is what you are testing here.
The reason, why you need proxy is so that you are on the same domain (because angular scenario runner will open your app in an iframe and will interact with it) - browser won't let you interact with an iframe that has content from a different domain.
So this is correct behavior. As @dignifiedquire pointed out, you are expecting redirect, which is something that your web server can do (by sending redirect headers), but angular scenario runner won't work then.
Hi,
I have setup Karma v0.10.2. with "ng-scenario" and configured the proxies like the following:
I know that this config is read after start because I get a warning that says me
In my e2e test I do
But this results in the following error:
What's wrong here?
Thx!
The text was updated successfully, but these errors were encountered: