Say I am making a little chat application using phoenix.
Locally when I open multiple tabs in a browser, will that be a separate socket connection?
From what I see with other chat apps is that if I open a new tab or even browser window, it re-connects to the same chat session, which makes sense since you want to re-connect the user using a cookie or something.
If this is the case, how do you test things locally if you want to test multiple users in a chat session etc.?
Any tricks?