ci 오류 수정
CI / test (push) Successful in 5m25s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Successful in 1m20s

This commit is contained in:
2025-12-10 17:04:56 +09:00
parent 86f28a1299
commit 017d5f128e
28 changed files with 167 additions and 192 deletions
@@ -41,7 +41,7 @@ describe("ProjectPropertiesPanel SEO 메타", () => {
it("SEO 타이틀 입력을 변경하면 seoTitle 이 updateProjectConfig 로 전달되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("SEO 타이틀") as HTMLInputElement;
const input = screen.getByLabelText("SEO title") as HTMLInputElement;
fireEvent.change(input, { target: { value: "새 SEO 타이틀" } });
@@ -51,7 +51,7 @@ describe("ProjectPropertiesPanel SEO 메타", () => {
it("메타 디스크립션 입력을 변경하면 seoDescription 이 updateProjectConfig 로 전달되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const textarea = screen.getByLabelText("메타 디스크립션") as HTMLTextAreaElement;
const textarea = screen.getByLabelText("Meta description") as HTMLTextAreaElement;
fireEvent.change(textarea, { target: { value: "SEO 설명" } });
@@ -63,7 +63,7 @@ describe("ProjectPropertiesPanel SEO 메타", () => {
it("OG/Twitter 이미지 URL 입력을 변경하면 seoOgImageUrl 이 updateProjectConfig 로 전달되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("OG/Twitter 이미지 URL") as HTMLInputElement;
const input = screen.getByLabelText("OG/Twitter image URL") as HTMLInputElement;
fireEvent.change(input, { target: { value: "https://example.com/og.png" } });
@@ -88,7 +88,7 @@ describe("ProjectPropertiesPanel SEO 메타", () => {
render(<ProjectPropertiesPanel />);
const checkbox = screen.getByLabelText(
"검색 엔진에 노출하지 않기 (noindex)",
"Hide from search engines (noindex)",
) as HTMLInputElement;
expect(checkbox.checked).toBe(false);