/
ikratkiy
/
Hyperliquid
Обзор
Документация
Войти
/
ikratkiy
/
Hyperliquid
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
src/app/RootStore.test.ts
16 строк
632 B
ikratkiy
feat: rewrite hyperliquid app shell
23 июн 2026, 22:01
23 июн 2026, 22:01
acc7acc
Код
Авторство
О чём код?
import { describe, expect, test } from "vitest"; import { RootStore } from "./RootStore"; describe("RootStore", () => { test("exposes the playbook workbench without old top-level panel stores", () => { const store = new RootStore() as unknown as Record<string, unknown>; expect(store.playbookStore).toBeTruthy(); expect(store.marketStore).toBeUndefined(); expect(store.assetGuideStore).toBeUndefined(); expect(store.spotConvertStore).toBeUndefined(); expect(store.transfersStore).toBeUndefined(); expect(store.accountStore).toBeUndefined(); expect(store.hyperEvmStore).toBeUndefined(); }); });