import { describe, it, expect } from "vitest"
import { AUDIT_SEARCH_PLACEHOLDER } from "@/lib/ui/search-placeholders"

describe("AuditClient — search placeholder", () => {
  it("is descriptive, not the generic catch-all", () => {
    expect(AUDIT_SEARCH_PLACEHOLDER).not.toBe("Suchen…")
    expect(AUDIT_SEARCH_PLACEHOLDER).toMatch(/Akteur/)
  })
})
