chore: save WIP before workstation switch

This commit is contained in:
2026-05-18 17:33:31 -07:00
parent 98b18de00a
commit 2c5666e419
30 changed files with 765 additions and 395 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ import { test, expect } from '@playwright/test';
test.describe('Epic 3: Rankings Page', () => {
test('Rankings page loads and displays rankings table', async ({ page }) => {
await page.goto('http://localhost:3000/rankings');
await page.goto('/rankings');
// Check page title or heading
await expect(page.locator('h1, h2')).toContainText(/rankings?/i);
@@ -25,7 +25,7 @@ test.describe('Epic 3: Rankings Page', () => {
});
test('Rankings table displays player columns', async ({ page }) => {
await page.goto('http://localhost:3000/rankings');
await page.goto('/rankings');
// Check for expected column headers
const table = page.locator('table');
@@ -38,7 +38,7 @@ test.describe('Epic 3: Rankings Page', () => {
test('Rankings page is publicly accessible (no login required)', async ({ page }) => {
// Navigate directly to rankings without logging in
await page.goto('http://localhost:3000/rankings');
await page.goto('/rankings');
// Page should load without redirecting to login
await expect(page).toHaveURL(/.*rankings.*/);