chore: update application configuration and UI components for improved styling and functionality
This commit is contained in:
parent
0af6b17792
commit
37ab8d7bab
54 changed files with 23293 additions and 1666 deletions
18
tests/e2e/conflict-resolution-form.spec.ts
Normal file
18
tests/e2e/conflict-resolution-form.spec.ts
Normal 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)
|
||||
})
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue