test: adjust minimum font size threshold to 10px in responsive tests to align with ERP density
TaxBaik CI/CD / build-and-deploy (push) Successful in 55s

This commit is contained in:
2026-06-30 22:43:17 +09:00
parent 1fb3a3c329
commit 80c97fba96
+1 -1
View File
@@ -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`);