it("shows the placeholder", () => {
    renderPasswordInput({ placeholder: "Enter password" })
    expect(screen.queryByPlaceholderText(/Enter password/)).not.toBe(null)
})