test(e2e): stabilize crm modal check
TaxBaik CI/CD / build-and-deploy (push) Successful in 52s

This commit is contained in:
2026-06-28 21:15:50 +09:00
parent 75661aa0ef
commit e4c2758dea
+2 -4
View File
@@ -94,10 +94,8 @@ test.describe('admin CRM pages', () => {
const addButton = page.getByRole('button', { name: /새 프로필 추가/ });
await addButton.click();
await expect(page.getByText('새 세무 프로필 추가')).toBeVisible({ timeout: 10_000 });
await expect(page.getByRole('button', { name: '취소' }).first()).toBeVisible({ timeout: 5_000 });
await expect(page.getByLabel('고객')).toBeVisible({ timeout: 5_000 });
await expect(page.getByText('새 세무 프로필 추가', { exact: true })).toBeVisible({ timeout: 10_000 });
await expect(page.getByRole('button', { name: '취소' }).last()).toBeVisible({ timeout: 5_000 });
});
test('No console errors on CRM page navigation', async ({ page }) => {