1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Add confirm only for Elgato (#47684)

This commit is contained in:
Franck Nijhof
2021-03-10 01:53:00 +01:00
committed by GitHub
parent 7840db0598
commit 62e49e545b
2 changed files with 6 additions and 0 deletions

View File

@@ -82,6 +82,11 @@ async def test_full_zeroconf_flow_implementation(
assert result["step_id"] == "zeroconf_confirm"
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
progress = hass.config_entries.flow.async_progress()
assert len(progress) == 1
assert progress[0]["flow_id"] == result["flow_id"]
assert progress[0]["context"]["confirm_only"] is True
result = await hass.config_entries.flow.async_configure(
result["flow_id"], user_input={}
)