This repository has been archived on 2025-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-23 18:59:01 -03:00

10 lines
272 B
Python

"""Test component setup."""
from homeassistant.setup import async_setup_component
from custom_components.ute.const import DOMAIN
async def test_async_setup(hass):
"""Test the component gets setup."""
assert await async_setup_component(hass, DOMAIN, {}) is True