learning_ai_common_plat/dashboards/admin-web/e2e/login.spec.ts
saravanakumardb1 2d54795c30 feat(dashboards): migrate admin + tracker dashboards to common-plat as product-agnostic
- Copy admin-dashboard-web → dashboards/admin-web
- Copy tracker-dashboard-web → dashboards/tracker-web
- Update pnpm-workspace.yaml to include dashboards/*
- Replace file: refs with workspace:* for @bytelyst/* packages
- Replace all hardcoded LysnrAI/lysnn.com branding with generic platform refs
- Make telemetry use NEXT_PUBLIC_PRODUCT_ID / PRODUCT_ID env vars
- Update mock credentials, seed data, invitation codes, placeholders
- Update READMEs, e2e tests, unit tests for product-agnostic content
- Both dashboards pass tsc --noEmit clean
2026-02-28 02:17:35 -08:00

46 lines
1.8 KiB
TypeScript

import { test, expect } from '@playwright/test';
test.describe('Admin Login Page', () => {
test('shows admin login form', async ({ page }) => {
await page.goto('/login');
await expect(page.getByText('Platform Admin')).toBeVisible();
await expect(page.getByText('Sign in to access the admin dashboard')).toBeVisible();
await expect(page.getByLabel('Email')).toBeVisible();
await expect(page.getByLabel('Password')).toBeVisible();
});
test('shows demo credentials hint', async ({ page }) => {
await page.goto('/login');
await expect(page.getByText(/admin@example\.com/)).toBeVisible();
});
test('Sign In button is disabled when form is empty', async ({ page }) => {
await page.goto('/login');
const btn = page.getByRole('button', { name: 'Sign In' });
await expect(btn).toBeDisabled();
});
test('shows validation hint for short password', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('admin@example.com');
await page.getByLabel('Password').fill('short');
await expect(page.getByText(/at least 8 characters/i)).toBeVisible();
});
test('shows error for invalid credentials', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('wrong@admin.com');
await page.getByLabel('Password').fill('WrongPassword123!');
await page.getByRole('button', { name: 'Sign In' }).click();
await expect(page.getByText(/invalid|error/i)).toBeVisible({ timeout: 10000 });
});
test('enables Sign In when valid email and password entered', async ({ page }) => {
await page.goto('/login');
await page.getByLabel('Email').fill('admin@example.com');
await page.getByLabel('Password').fill('Admin123!');
const btn = page.getByRole('button', { name: 'Sign In' });
await expect(btn).toBeEnabled();
});
});