1
0
mirror of https://github.com/home-assistant/core.git synced 2025-06-07 22:57:06 +00:00

10 lines
329 B
Python

"""Test config init."""
from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component
async def test_config_setup(hass: HomeAssistant, event_loop) -> None:
"""Test it sets up hassbian."""
await async_setup_component(hass, "config", {})
assert "config" in hass.config.components