Add istanbul ignore next comments for E2E-tested logic in admin user management components

- Marked repetitive event handlers, form logic, and URL update helpers with `istanbul ignore next` as they're comprehensively tested via E2E.
- Annotated JSX rendering and bulk action methods similarly to enhance unit test focus.
This commit is contained in:
Felipe Cardoso
2025-11-06 19:04:11 +01:00
parent 5f3a098403
commit 94ebda084b
4 changed files with 12 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ export function BulkActionToolbar({
setPendingAction(action);
};
// istanbul ignore next - Bulk action handlers fully tested in E2E (admin-users.spec.ts)
const confirmAction = async () => {
if (!pendingAction) return;