Skip to content

Commit f8d4612

Browse files
Matthew Valancyclaude
andcommitted
Update test URLs to use Traefik on port 80
Changes: - Remove port 3127 from test URLs - Tests now access site via Traefik on standard HTTP port 80 - Guest login confirmed working via Traefik routing Test Results: ✅ GuestLogin mutation succeeds with JWT token ✅ GetGraphs query succeeds with guest authorization ✅ Apollo Client state shows successful guest session 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 286f4d5 commit f8d4612

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/e2e/demo-guest-login.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { test, expect } from '@playwright/test';
55
* This test runs against the actual deployed instance at graphdone-ai-01.chocolate-perch.ts.net:3127
66
*/
77

8-
const DEMO_URL = 'http://graphdone-ai-01.chocolate-perch.ts.net:3127';
8+
const DEMO_URL = 'http://graphdone-ai-01.chocolate-perch.ts.net';
99

1010
test.describe('Demo Server Guest Login', () => {
1111
test.beforeEach(async ({ page }) => {

tests/e2e/demo-guest-quick-test.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { test, expect, chromium } from '@playwright/test';
44
* Quick test with fresh browser context to avoid caching issues
55
*/
66

7-
const DEMO_URL = 'http://graphdone-ai-01.chocolate-perch.ts.net:3127';
7+
const DEMO_URL = 'http://graphdone-ai-01.chocolate-perch.ts.net';
88

99
test('quick cache-free guest login test', async () => {
1010
// Create a completely fresh browser instance

0 commit comments

Comments
 (0)