Files
syndarix/frontend/e2e/settings-password.spec.ts
Felipe Cardoso b2f3ec8f25 Refactor ESLint configuration and update test rules for clarity and consistency
- Consolidated and modularized `eslint.config.mjs` with defined rules for source, test, E2E, and scripts.
- Improved test and E2E rules with relaxed settings for flexibility and enhanced mocking.
- Standardized variable naming and removed redundant imports in unit and E2E tests.
- Updated error handling and comments to align with modern TypeScript best practices (e.g., `@ts-expect-error`).
2025-11-10 10:57:43 +01:00

60 lines
2.3 KiB
TypeScript

/**
* E2E Tests for Password Change Page
* Tests password change functionality
*/
import { test, expect } from '@playwright/test';
import { setupAuthenticatedMocks } from './helpers/auth';
test.describe('Password Change', () => {
test.beforeEach(async ({ page }) => {
// Set up API mocks
await setupAuthenticatedMocks(page);
// Login via UI to establish authenticated session
// Auth already cached in storage state (loginViaUI removed for performance)
// Navigate to password page
await page.goto('/settings/password');
// Wait for form to be visible
await page.getByLabel(/current password/i).waitFor({ state: 'visible' });
});
// TODO: Fix flaky test - failed once at 12.8s, passed on retry at 8.3s
// Likely race condition in form rendering or async state update
// See: E2E_PERFORMANCE_OPTIMIZATION.md - Phase 3
test.skip('should display password change form', async ({ page }) => {
// Check page title
await expect(page.getByRole('heading', { name: 'Password' })).toBeVisible();
// Verify all password fields are present
await expect(page.getByLabel(/current password/i)).toBeVisible();
await expect(page.getByLabel(/^new password/i)).toBeVisible();
await expect(page.getByLabel(/confirm.*password/i)).toBeVisible();
// Verify submit button is present
await expect(page.getByRole('button', { name: /change password/i })).toBeVisible();
});
test('should have all password fields as password type', async ({ page }) => {
// Wait for form to load
const currentPasswordInput = page.getByLabel(/current password/i);
await currentPasswordInput.waitFor({ state: 'visible' });
// Verify all password fields have type="password"
await expect(currentPasswordInput).toHaveAttribute('type', 'password');
await expect(page.getByLabel(/^new password/i)).toHaveAttribute('type', 'password');
await expect(page.getByLabel(/confirm.*password/i)).toHaveAttribute('type', 'password');
});
test('should have submit button disabled initially', async ({ page }) => {
// Wait for form to load
const submitButton = page.getByRole('button', { name: /change password/i });
await submitButton.waitFor({ state: 'visible' });
// Verify button is disabled when form is empty/untouched
await expect(submitButton).toBeDisabled();
});
});