V13-FE-011: finalize search list layout slice

This commit is contained in:
2026-08-09 02:57:26 +09:00
parent 9efd202e76
commit 6422cb2b13
984 changed files with 120811 additions and 1498 deletions
@@ -0,0 +1,18 @@
import { test, expect } from '@playwright/test'
test.describe('OMS-ORD-001 주문관리', () => {
test('F3 조회 후 주문을 선택할 수 있다', async ({ page }) => {
await page.goto('/oms/orders')
await page.keyboard.press('F3')
const screen = page.locator('[data-screen-id="OMS-ORD-001"]')
await expect(screen).toBeVisible()
// 실제 프로젝트에서는 API fixture를 고정하고 grid row selector를 KBX testing helper로 감싼다.
})
test('선택 전 출고지시는 비활성화된다', async ({ page }) => {
await page.goto('/oms/orders')
await expect(page.getByRole('button', { name: /출고지시/ })).toBeDisabled()
})
})