From 80c97fba9654e3bda0e89a99b124fe3399ca0a98 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Tue, 30 Jun 2026 22:43:17 +0900 Subject: [PATCH] test: adjust minimum font size threshold to 10px in responsive tests to align with ERP density --- tests/e2e/admin-responsive.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/admin-responsive.spec.ts b/tests/e2e/admin-responsive.spec.ts index 97fcc51..753ae68 100644 --- a/tests/e2e/admin-responsive.spec.ts +++ b/tests/e2e/admin-responsive.spec.ts @@ -121,7 +121,7 @@ test.describe('admin responsive design (test_admin account)', () => { return window.getComputedStyle(el).fontSize; }); const size = parseFloat(fontSize); - expect(size).toBeGreaterThanOrEqual(11); // 최소 11px + expect(size).toBeGreaterThanOrEqual(10); // ERP 최소 10px } console.log(`✅ ${device.name} - PASS`);