1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-11 17:39:17 +00:00
RoboMagus 3bacd9df2f
Add trigger for persistent_notification ()
Co-authored-by: J. Nick Koston <nick@koston.org>
2023-06-21 11:55:06 +02:00

13 lines
372 B
Python

"""The tests for the persistent notification component."""
import pytest
import homeassistant.components.persistent_notification as pn
from homeassistant.setup import async_setup_component
@pytest.fixture(autouse=True)
async def setup_integration(hass):
"""Set up persistent notification integration."""
assert await async_setup_component(hass, pn.DOMAIN, {})