import { test, expect } from '@playwright/test' import { testFormData, ConflictResolutionFormHelper, MarkdownValidator } from './conflict-resolution-utils' test.describe('Conflict Resolution Framework - Basic Test', () => { test('Form utilities work correctly', async ({ page }) => { const formHelper = new ConflictResolutionFormHelper(page) await formHelper.goto() // Quick test that our helper works await expect(page.locator('h1:has-text("CONFLICT RESOLUTION FRAMEWORK")')).toBeVisible() // Fill basic info as a smoke test await formHelper.fillBasicInfo(testFormData) // Verify basic info was filled await expect(page.locator('input[placeholder*="organization name"]')).toHaveValue(testFormData.orgName) }) })