Files
core/tests/components/emoncms/__init__.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
377 B
Python
Raw Normal View History

2024-07-24 21:40:05 +02:00
"""Tests for the emoncms component."""
2024-09-03 17:21:13 +02:00
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()