import { readFileSync } from "node:fs"; import assert from "node:assert/strict"; import test from "node:test"; test("AI assistant mode menu shows an icon for ask and agent options", () => { const source = readFileSync("apps/desktop/src/components/editor/AiAssistant.vue", "utf8"); assert.match( source, //, ); assert.match( source, //, ); assert.match( source, //, ); });