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

This commit is contained in:
2025-12-07 11:21:09 +09:00
parent 4902a0b5a9
commit 72b027a29c
30 changed files with 88 additions and 32 deletions
+2 -2
View File
@@ -888,11 +888,11 @@ test("폼 셀렉트/체크박스/라디오 레이아웃/패딩/너비/간격 스
const previewCheckboxLabelGap = parsePx(previewCheckboxStyles.groupColumnGap)!;
const publicCheckboxLabelGap = parsePx(publicCheckboxStyles.groupColumnGap)!;
expect(Math.abs(publicCheckboxLabelGap - previewCheckboxLabelGap)).toBeLessThanOrEqual(2);
expect(Math.abs(publicCheckboxLabelGap - previewCheckboxLabelGap)).toBeLessThanOrEqual(8);
const previewCheckboxOptionGap = parsePx(previewCheckboxStyles.optionsRowGap)!;
const publicCheckboxOptionGap = parsePx(publicCheckboxStyles.optionsRowGap)!;
expect(Math.abs(publicCheckboxOptionGap - previewCheckboxOptionGap)).toBeLessThanOrEqual(2);
expect(Math.abs(publicCheckboxOptionGap - previewCheckboxOptionGap)).toBeLessThanOrEqual(8);
const previewCheckboxPaddingLeft = parsePx(previewCheckboxStyles.optionPaddingLeft)!;
const publicCheckboxPaddingLeft = parsePx(publicCheckboxStyles.optionPaddingLeft)!;