import { test, expect } from '@playwright/test' import { requireKbxScenario, scenarioTitle } from './helpers/kbxScenario' const mismatchRecovery=requireKbxScenario('scenario.common.reconcile.mismatch-recovery') test.describe('COMMON-REC-001 업무 데이터 대사', () => { test(scenarioTitle(mismatchRecovery.id), async ({ page }) => { await page.goto('/operations/reconcile') await expect(page.locator('[data-screen-id="COMMON-REC-001"]')).toBeVisible() await expect(page.locator('[data-kbx-surface="criteria/search"]')).toBeVisible() await expect(page.locator('[data-kbx-surface="comparison-grid"]')).toBeVisible() }) })