nixos/tests/home-assistant: Drop esphome, fix post-restart expectation

Mentioning esphome in the config is now causing an error. Check for the
backup module post-restart, not esphome.
This commit is contained in:
Martin Weinelt 2023-06-07 23:55:51 +02:00
parent b57f066dea
commit 4540dad9e7
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -62,7 +62,6 @@ in {
frontend = {};
# include some popular integrations, that absolutely shouldn't break
esphome = {};
knx = {};
shelly = {};
zha = {};
@ -198,7 +197,7 @@ in {
with subtest("Check that new components get setup after restart"):
journal = get_journal_since(cursor)
for domain in ["esphome"]:
for domain in ["backup"]:
assert f"Setup of domain {domain} took" in journal, f"{domain} setup missing"
with subtest("Check that no errors were logged"):