symfony1 - Why is my functional test getting the meta tag http-equiv='refresh' and then quitting? -
when run simple functional test (for example) users/signin page, i'm getting this:
<html><head><meta http-equiv="refresh" content="0;url=https://localhost/index.php/users/signin"/></head></html>
and functional test stops. happens in other functional tests too, not on every request. other tests run fine, when gets request in test, response (with requested url in content attribute), , stop.
any ideas on why might happening?
these functional tests used work, got project development company , don't have idea of where start looking changes. of course can diffs on files version control, don't know start. leads!
argh, found quicker thought.
the ssl filter turned on, , needs disabled test environment. had removed test environment app.yml.
test: disable_sslfilter: true
Comments
Post a Comment