adam-the-hero c6bcd5a036
Add Watergate Sonic Local Integration (#129686)
Co-authored-by: Mark Breen <markvader@users.noreply.github.com>
2024-12-09 19:40:13 +01:00

12 lines
358 B
Python

"""Tests for the Watergate integration."""
from homeassistant.core import HomeAssistant
async def init_integration(hass: HomeAssistant, mock_entry) -> None:
"""Set up the Watergate integration in Home Assistant."""
mock_entry.add_to_hass(hass)
await hass.config_entries.async_setup(mock_entry.entry_id)
await hass.async_block_till_done()