회기 집계와 기록 복귀 및 감독 근거 링크 수정
Some checks failed
API contract / OpenAPI type drift (push) Failing after 4m46s

This commit is contained in:
Yun Chan 2026-09-09 14:41:54 +09:00
parent aa951c6c4a
commit 1306c524c1
20 changed files with 4631 additions and 60 deletions

View file

@ -760,9 +760,9 @@ test.describe("회기 대화 — 텍스트 턴과 SSE 스트림", () => {
await resumeSession(page);
const transcript = page.locator(".sx-transcript__scroll");
// 조사까지 자연스럽게 바뀐다: [NAME]은→익명 내담자는, [NAME]이→익명 내담자가.
await expect(transcript).toContainText("익명 내담자는 제 얘기를 끝까지 듣지 않아요.");
await expect(transcript).toContainText("익명 내담자가 자꾸 저를 몰아세워요.");
// 조사까지 자연스럽게 바뀐다: [NAME]은→익명 인물은, [NAME]이→익명 인물이.
await expect(transcript).toContainText("익명 인물은 제 얘기를 끝까지 듣지 않아요.");
await expect(transcript).toContainText("익명 인물이 자꾸 저를 몰아세워요.");
await expect(transcript).not.toContainText("[NAME]");
});