fix(memory-qmd): write XDG index.yml + legacy compat

This commit is contained in:
Vignesh Natarajan
2026-01-28 00:12:18 -08:00
committed by Vignesh
parent 9be3c27bb7
commit dd8373a424
5 changed files with 53 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import { EventEmitter } from "node:events";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
vi.mock("node:child_process", () => {
const spawn = vi.fn((cmd: string, _args: string[]) => {
const spawn = vi.fn((_cmd: string, _args: string[]) => {
const stdout = new EventEmitter();
const stderr = new EventEmitter();
const child = new EventEmitter() as {