14 lines
395 B
Python
14 lines
395 B
Python
"""Tests for the EZVIZ integration."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def setup_integration(hass: HomeAssistant, entry: MockConfigEntry) -> None:
|
|
"""Set up the EZVIZ integration in Home Assistant."""
|
|
entry.add_to_hass(hass)
|
|
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|