mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 02:49:51 +00:00
8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
import { EntityRegistryEntry } from "../../../src/data/entity_registry";
|
|
import type { MockHomeAssistant } from "../../../src/fake_data/provide_hass";
|
|
|
|
export const mockEntityRegistry = (
|
|
hass: MockHomeAssistant,
|
|
data: EntityRegistryEntry[] = []
|
|
) => hass.mockWS("config/entity_registry/list", () => data);
|