"""Tests for the Abode sensor device.""" from syrupy.assertion import SnapshotAssertion from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN from homeassistant.core import HomeAssistant from homeassistant.helpers import entity_registry as er from .common import setup_platform from tests.common import snapshot_platform async def test_all_entities( hass: HomeAssistant, entity_registry: er.EntityRegistry, snapshot: SnapshotAssertion, ) -> None: """Test all entities.""" config_entry = await setup_platform(hass, SENSOR_DOMAIN) await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id)