mirror of https://github.com/home-assistant/core
13 lines
377 B
Python
13 lines
377 B
Python
"""Tests for the emoncms component."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def setup_integration(hass: HomeAssistant, entry: MockConfigEntry) -> None:
|
|
"""Set up the integration."""
|
|
entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|