feat: add missing page-config route definitions for login, dashboard, and admin pages

This commit is contained in:
2026-01-21 04:22:58 +00:00
parent 1730e848f1
commit a441e87520
6 changed files with 65 additions and 16 deletions

View File

@@ -1,16 +0,0 @@
/**
* Playwright Tests - Auto-discover and execute JSON test definitions
*
* This file loads all JSON test definitions from packages/*/playwright/tests.json
* and registers them as Playwright tests at runtime.
*
* Usage: npm run test:e2e
*/
import { test } from '@playwright/test'
import { loadAllPackageTests } from './json-runner/playwright-json-runner'
import { resolve } from 'path'
// Discover and register all JSON tests from packages
const packagesDir = resolve(__dirname, '../packages')
void loadAllPackageTests(packagesDir, test)