ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...
    • List all captured response paths in the console.

      Returns string[]

      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;
      }