오류 수정
CI / test (push) Failing after 5m41s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-12 18:04:31 +09:00
parent 6804665b95
commit 4840a530b6
205 changed files with 1802 additions and 9887 deletions
+4 -4
View File
@@ -67,7 +67,7 @@ describe("ProjectPropertiesPanel", () => {
it("캔버스 너비를 390 으로 입력하면 mobile 프리셋으로 동기화되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("Canvas width 커스텀 (px)") as HTMLInputElement;
const input = screen.getByLabelText("Canvas width 커스텀") as HTMLInputElement;
fireEvent.change(input, { target: { value: "390" } });
@@ -77,7 +77,7 @@ describe("ProjectPropertiesPanel", () => {
it("캔버스 너비를 768 로 입력하면 tablet 프리셋으로 동기화되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("Canvas width 커스텀 (px)") as HTMLInputElement;
const input = screen.getByLabelText("Canvas width 커스텀") as HTMLInputElement;
fireEvent.change(input, { target: { value: "768" } });
@@ -87,7 +87,7 @@ describe("ProjectPropertiesPanel", () => {
it("캔버스 너비를 1200 으로 입력하면 desktop 프리셋으로 동기화되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("Canvas width 커스텀 (px)") as HTMLInputElement;
const input = screen.getByLabelText("Canvas width 커스텀") as HTMLInputElement;
fireEvent.change(input, { target: { value: "1200" } });
@@ -97,7 +97,7 @@ describe("ProjectPropertiesPanel", () => {
it("캔버스 너비를 커스텀 값으로 입력하면 canvasPreset=custom 과 함께 canvasWidthPx 가 설정되어야 한다", () => {
render(<ProjectPropertiesPanel />);
const input = screen.getByLabelText("Canvas width 커스텀 (px)") as HTMLInputElement;
const input = screen.getByLabelText("Canvas width 커스텀") as HTMLInputElement;
fireEvent.change(input, { target: { value: "1000" } });