Files
lez-programs/apps/amm/tests/ui-smoke.mjs
T
Ricardo Guilherme Schmidt 8c3e6fccfe feat(wallet): humanize shared wallet experience
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.
2026-08-21 17:38:45 -03:00

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();