1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-03 12:46:09 +01:00
Files
2026-06-08 15:45:03 +02:00

13 lines
367 B
Python

"""Tests for Aqvify integration."""
from homeassistant.core import HomeAssistant
from tests.common import MockConfigEntry
async def setup_integration(hass: HomeAssistant, config_entry: MockConfigEntry) -> None:
"""Helper for setting up the component."""
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()