Files
KArtSell.Aegis/frontend/e2e/research-boundary.spec.ts
T
kjh2064 dcd1322d41
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s
Initial commit: Add project files
2026-08-02 05:15:36 +09:00

8 lines
321 B
TypeScript

import { expect, test } from '@playwright/test'
test('research page declares non-production boundary', async ({ page }) => {
await page.goto('/research/sell-decision')
await expect(page.getByText('RESEARCH_CANDIDATE_NOT_PRODUCTION')).toBeVisible()
await expect(page.getByText('자동주문 OFF')).toBeVisible()
})