Files
KArtSell.Aegis/docs/Design/kbx-foundation-v36/tests/e2e/common-reconcile.spec.ts
T

14 lines
647 B
TypeScript

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()
})
})