Initial commit: Add project files
ci / backend (push) Failing after 12s
ci / frontend (push) Failing after 19s
ci / static (push) Failing after 45s

This commit is contained in:
2026-08-02 05:15:36 +09:00
commit dcd1322d41
636 changed files with 122352 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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()
})