feat(ai-character): 시리즈 키워드 칩 입력 적용

This commit is contained in:
Yu Sung
2026-08-04 15:20:09 +09:00
parent d030d2eebd
commit bd37e05d82
9 changed files with 91 additions and 16 deletions

View File

@@ -143,7 +143,13 @@ test("desktop Series CRUD uses genre lookup, crop, edit initialization, and soft
// When
await page.getByLabel("제목").fill("새 시리즈");
await page.getByLabel("소개").fill("새로운 시리즈 소개");
await page.getByLabel("키워드").fill("달빛");
const keywordInput = page.getByRole("textbox", { name: "키워드" });
await keywordInput.fill("달빛");
await keywordInput.press("Enter");
await keywordInput.fill("상담");
await keywordInput.press(",");
await expect(page.getByRole("button", { name: "키워드 달빛 삭제" })).toBeVisible();
await expect(page.getByRole("button", { name: "키워드 상담 삭제" })).toBeVisible();
await page.getByRole("checkbox", { name: "월요일" }).check();
await page.getByLabel("장르").selectOption("77");
await setSeriesImageFile(page);