We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c6220 commit 776a2fdCopy full SHA for 776a2fd
packages/auth/test/integration/webdriver/util/test_server.ts
@@ -39,7 +39,11 @@ class AuthTestServer {
39
}
40
41
get address(): string {
42
- return `http://127.0.0.1:${PORT_NUMBER}`;
+ /*
43
+ We use "127.0.0.1" rather than "localhost" since emulator uses the former,
44
+ and we want to be on the same origin (to access session storage for redirect-based tests).
45
+ */
46
+ return `http://127.0.0.1:${PORT_NUMBER}`;
47
48
49
async start(): Promise<void> {
0 commit comments