File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
tests/components/zwave_js Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 66from zwave_js_server .const import CommandClass
77from zwave_js_server .event import Event
88
9+ from homeassistant .const import Platform
910from homeassistant .core import HomeAssistant
1011
1112from tests .common import async_capture_events
1213
1314
15+ @pytest .fixture
16+ def platforms () -> list [str ]:
17+ """Fixture to specify platforms to test."""
18+ return []
19+
20+
1421async def test_scenes (
1522 hass : HomeAssistant , hank_binary_switch , integration , client
1623) -> None :
@@ -244,6 +251,7 @@ async def test_notifications(
244251 assert events [2 ].data ["command_class_name" ] == "Multilevel Switch"
245252
246253
254+ @pytest .mark .parametrize ("platforms" , [[Platform .SWITCH ]])
247255async def test_value_updated (
248256 hass : HomeAssistant , vision_security_zl7432 , integration , client
249257) -> None :
You can’t perform that action at this time.
0 commit comments