1
0
mirror of https://github.com/home-assistant/frontend.git synced 2025-12-24 20:55:49 +00:00

Fix picker initial sort and reorganize picker data (#28476)

This commit is contained in:
Wendelin
2025-12-11 08:28:45 +01:00
committed by GitHub
parent 3e20e9b388
commit 9f16ce7341
317 changed files with 1394 additions and 1352 deletions

View File

@@ -1,13 +1,13 @@
import { describe, it, expect, vi } from "vitest";
import { describe, expect, it, vi } from "vitest";
import {
isDeletableEntity,
deleteEntity,
isDeletableEntity,
} from "../../../src/common/entity/delete_entity";
import type { HomeAssistant } from "../../../src/types";
import type { EntityRegistryEntry } from "../../../src/data/entity_registry";
import type { IntegrationManifest } from "../../../src/data/integration";
import type { ConfigEntry } from "../../../src/data/config_entries";
import type { EntityRegistryEntry } from "../../../src/data/entity/entity_registry";
import type { IntegrationManifest } from "../../../src/data/integration";
import type { Helper } from "../../../src/panels/config/helpers/const";
import type { HomeAssistant } from "../../../src/types";
describe("isDeletableEntity", () => {
it("should return true for restored entities", () => {