14 lines
		
	
	
		
			445 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			445 B
		
	
	
	
		
			Python
		
	
	
"""The tests for the persistent notification component."""
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
from homeassistant.components import persistent_notification as pn
 | 
						|
from homeassistant.core import HomeAssistant
 | 
						|
from homeassistant.setup import async_setup_component
 | 
						|
 | 
						|
 | 
						|
@pytest.fixture(autouse=True)
 | 
						|
async def setup_integration(hass: HomeAssistant) -> None:
 | 
						|
    """Set up persistent notification integration."""
 | 
						|
    assert await async_setup_component(hass, pn.DOMAIN, {})
 |