1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-02 21:19:16 +00:00

11 lines
318 B
Python

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