export function list(): string[] {
const paths = Array.from(captured.keys());
console.table(
Array.from(captured.entries()).map(([path, entry]) => ({
path,
method: entry.method,
url: entry.url,
contentType: entry.contentType,
})),
);
return paths;
}
List all captured response paths in the console.