Browse Source
- Created a new index file in the core stores directory to export all stores from a single module. - Updated imports to use consolidated store exports.pull/774/head
81 changed files with 92 additions and 119 deletions
@ -1,6 +1,6 @@ |
|||
import type { Protobuf } from "@meshtastic/core"; |
|||
import { vi } from "vitest"; |
|||
import type { Device } from "./deviceStore.ts"; |
|||
import type { Device } from "./index.ts"; |
|||
|
|||
/** |
|||
* You can spread this base mock in your tests and override only the |
|||
@ -0,0 +1,4 @@ |
|||
export * from "@core/stores/appStore"; |
|||
export * from "@core/stores/deviceStore"; |
|||
export * from "@core/stores/messageStore"; |
|||
export * from "@core/stores/sidebarStore"; |
|||
Loading…
Reference in new issue