mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
Consolidate wallet account decoding and portfolio handling around the shared Rust IDL decoder. Simplify AMM wallet integration, remove obsolete caches and network plumbing, and cover account selection and live flows.
17 lines
496 B
JavaScript
17 lines
496 B
JavaScript
import { resolve } from "node:path";
|
|
|
|
const frameworkRoot = process.env.LOGOS_QT_MCP;
|
|
if (!frameworkRoot)
|
|
throw new Error("LOGOS_QT_MCP is required");
|
|
|
|
const { test, run } = await import(resolve(frameworkRoot, "test-framework/framework.mjs"));
|
|
|
|
test("amm ui: renders primary navigation", async (app) => {
|
|
await app.waitFor(
|
|
async () => { await app.expectTexts(["Trade", "Liquidity", "Pools"]); },
|
|
{ timeout: 20000, interval: 500, description: "primary navigation" },
|
|
);
|
|
});
|
|
|
|
run();
|