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
+5 -5
View File
@@ -51,7 +51,7 @@ test.describe.serial('Epic 1: User Registration', () => {
});
test('Registration page exists and loads', async ({ page }) => {
await page.goto('http://localhost:3000/auth/register');
await page.goto('/auth/register');
// Check for registration form elements
await expect(page.locator('input[name="name"]')).toBeVisible();
@@ -61,7 +61,7 @@ test.describe.serial('Epic 1: User Registration', () => {
});
test('Registration with valid data creates account', async ({ page }) => {
await page.goto('http://localhost:3000/auth/register');
await page.goto('/auth/register');
// Wait for page to load
await page.waitForLoadState('domcontentloaded');
@@ -122,7 +122,7 @@ test.describe.serial('Epic 1: User Registration', () => {
});
test('Registration with duplicate email fails', async ({ page }) => {
await page.goto('http://localhost:3000/auth/register');
await page.goto('/auth/register');
// Fill registration form with existing email
await page.fill('input[name="name"]', testName);
@@ -147,7 +147,7 @@ test.describe.serial('Epic 1: User Registration', () => {
});
test('Registration with weak password fails', async ({ page }) => {
await page.goto('http://localhost:3000/auth/register');
await page.goto('/auth/register');
// Fill registration form with weak password
await page.fill('input[name="name"]', testName);
@@ -162,7 +162,7 @@ test.describe.serial('Epic 1: User Registration', () => {
});
test('Auto-created player profile is linked to user', async ({ page }) => {
await page.goto('http://localhost:3000/auth/register');
await page.goto('/auth/register');
const profileEmail = `profile-${Date.now()}@example.com`;
const profileName = 'Profile Test User';