mirror of
https://github.com/smkrv/ha-text-ai.git
synced 2026-07-22 07:03:58 +08:00
9 lines
221 B
Python
9 lines
221 B
Python
"""Common fixtures for tests."""
|
|
import pytest
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
@pytest.fixture
|
|
def hass() -> HomeAssistant:
|
|
"""Return a Home Assistant instance for testing."""
|
|
return HomeAssistant()
|