chore: update application configuration and UI components for improved styling and functionality

This commit is contained in:
Jennie Robinson Faber 2025-08-16 08:13:35 +01:00
parent 0af6b17792
commit 37ab8d7bab
54 changed files with 23293 additions and 1666 deletions

View file

@ -0,0 +1,18 @@
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)
})
})