"""E2E test: SSP Passkey Entry pairing between Linux and ESP32.""" from __future__ import annotations import pytest from .conftest import requires_esp32 @requires_esp32 class TestSSPPasskeyEntry: """One side displays a passkey, the other side enters it.""" async def test_passkey_entry_pairing(self, esp32_client): """One side displays passkey, other enters it.""" pytest.skip("Not yet implemented")