Implements complete Playwright testing infrastructure for manual MCP testing and as foundation for Magnitude tests. Created: - playwright.config.ts - Main configuration with setup project - tests/playwright/auth.setup.ts - Authentication setup (placeholder) - tests/playwright/fixtures.ts - Custom fixtures for authenticated/page contexts - tests/playwright/helpers/chat.ts - Chat interaction helpers - tests/playwright/helpers/galaxy.ts - Galaxy visualization helpers - tests/playwright/helpers/node.ts - Node creation/management helpers - tests/playwright/smoke.spec.ts - Basic smoke tests - .env.test - Environment variables template Updated: - package.json - Added test:playwright scripts - .gitignore - Added tests/playwright/.auth/ exclusion Ready for manual Playwright MCP testing and Magnitude test creation. Resolves plan: 01-playwright-scaffolding.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
37 lines
993 B
TypeScript
37 lines
993 B
TypeScript
import { Page } from '@playwright/test';
|
|
|
|
export class NodeHelper {
|
|
constructor(private page: Page) {}
|
|
|
|
async createNode(title: string, body: string) {
|
|
// This will vary based on actual implementation
|
|
// For now, placeholder that navigates to chat
|
|
await this.page.goto('/chat');
|
|
|
|
// TODO: Implement actual node creation flow
|
|
// This depends on how nodes are created in the UI
|
|
}
|
|
|
|
async waitForUMAPCalculation(timeoutMs: number = 60000) {
|
|
// Poll /api/galaxy until nodes have coords_3d
|
|
const startTime = Date.now();
|
|
|
|
while (Date.now() - startTime < timeoutMs) {
|
|
try {
|
|
const response = await this.page.request.get('/api/galaxy');
|
|
const data = await response.json();
|
|
|
|
if (data.nodes && data.nodes.every((n: any) => n.coords_3d !== null)) {
|
|
return true;
|
|
}
|
|
} catch {
|
|
// Continue polling
|
|
}
|
|
|
|
await this.page.waitForTimeout(2000);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|