I have looked everywhere but it looks like I am only person asking this.
How to keep browser session in protractor alive, not to have to login everytime I run a test
How to keep browser session in protractor alive, not to have to login everytime I run a test. I have put login logics in onPrepare to avoid logging for every test function
The best choice is to start the Chrome browser session your self, and then provide the session id to protractor.
There are multiple ways of doing this
Let me know if this solves your problem.