hass_flickerstrip/tests/test_init.py

10 lines
281 B
Python
Raw Normal View History

2023-01-29 09:34:51 -05:00
"""Test component setup."""
from homeassistant.setup import async_setup_component
from custom_components.flickerstrip.const import DOMAIN
async def test_async_setup(hass):
"""Test the component gets setup."""
assert await async_setup_component(hass, DOMAIN, {}) is True