1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Fix more info type test (#17758)

This commit is contained in:
Paul Bottein
2023-08-31 22:37:25 +02:00
committed by GitHub
parent 9c60a047c1
commit 6c7efc17c2

View File

@@ -18,9 +18,9 @@ describe("stateMoreInfoType", () => {
assert.strictEqual(stateMoreInfoType(stateObj), "hidden");
});
it("Returns default for switch states", () => {
it("Returns default for tts states", () => {
const stateObj: any = {
entity_id: "switch.bla",
entity_id: "tts.bla",
attributes: {},
};
assert.strictEqual(stateMoreInfoType(stateObj), "default");