1차 싱크 완료
CI / test (push) Failing after 41m13s
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-11-24 21:32:37 +09:00
parent 7a8ad7c057
commit 672cca5271
83 changed files with 6681 additions and 325 deletions
+10 -3
View File
@@ -44,15 +44,22 @@ describe("SectionPropertiesPanel - layout presets", () => {
render(
<SectionPropertiesPanel
sectionProps={baseProps}
sectionProps={{
...baseProps,
columns: [
{ id: "col-1", span: 6 },
{ id: "col-2", span: 6 },
],
}}
selectedBlockId="section-layout-2"
updateBlock={updateBlock}
/>,
);
const input = screen.getByLabelText("1열 폭 (1~12)");
const inputs = screen.getAllByLabelText("1열 폭 (1~11)");
const numberInput = inputs.find((el) => (el as HTMLInputElement).tagName === "INPUT" && (el as HTMLInputElement).type === "number") as HTMLInputElement;
fireEvent.change(input, { target: { value: "8" } });
fireEvent.change(numberInput, { target: { value: "8" } });
expect(updateBlock).toHaveBeenCalledWith(
"section-layout-2",