refactor(audit): drop @DirtiesContext, add @BeforeEach, use existsByKind in wait conditions

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-26 15:43:07 +02:00
parent 11d93919b2
commit 23cff1cdd7
2 changed files with 10 additions and 5 deletions

View File

@@ -5,4 +5,5 @@ import org.springframework.data.jpa.repository.JpaRepository;
import java.util.UUID;
public interface AuditLogRepository extends JpaRepository<AuditLog, UUID> {
boolean existsByKind(AuditKind kind);
}