How can we help?

Runs commands

The runs command lets you list and inspect Playwright test runs for a project.

List runs

This command shows test runs for a project. Use this when you want to find recent failures, filter by branch or status, or pick a run_id for deeper inspection.

neetoplaydash runs list vbbfvk2
neetoplaydash runs list vbbfvk2 --status failed --branch main --page-size 20

Required argument:

  • <project_id> - Project identifier (from projects list)

Optional flags:

  • --branch - Filter runs by branch name

  • --page - Page number

  • --page-size - Items per page

  • --status - Filter runs by status (e.g. passed, failed, running)

  • --subdomain <name> - Target a specific logged-in workspace

  • --json - Return JSON envelope output

  • --quiet - Return raw payload only

  • --toon - Return TOON (token-optimized) output

Sample output:

STATUS   DUR...   AUTHOR   BRANCH   CI BUILD ID      COMMIT ID          COMMIT NAME                        
──────   ──────   ──────   ──────   ──────────────   ────────────────   ───────────────────────────────────
failed   737830   Oli...   main     40db1930-87...   73125cfd6884d...   Fix checkout flow (#1842)          
passed   155...   Jan...   main     b0e41692-5f...   Add guest login (#1839)            

Page 1 of 42 (83 total records)

  Show run: neetoplaydash runs get <project_id> <run_id>
  List test entities: neetoplaydash test-entities list <project_id> <run_id>

Get a run

This command shows a single run with summary, statistics, and specs. Use this when you need full run details before drilling into individual test entities.

neetoplaydash runs get 4hb687w xprhzkt

Required arguments:

  • <project_id> - Project identifier

  • <run_id> - Run identifier (from runs list)

Optional flags:

  • --subdomain <name> - Target a specific logged-in workspace

  • --json - Return JSON envelope output

  • --quiet - Return raw payload only

  • --toon - Return TOON (token-optimized) output

Sample output:

  PROJECT ID      4hb687w
  RUN ID          xprhzkt
  COMMIT ID       73125cfd6884dd17d45f3e93a321b0f8c0e40c51
  CREATED AT      2026-01-05T03:10:32.742Z
  COMMIT NAME     Fix checkout flow (#1842)
  STATUS          failed
  DURATION        737830
  CI BUILD ID     40db1930-8742-4932-81b6-93537e314c15
  BRANCH          main
  AUTHOR          Oliver Example
  TAGS            ["nightly"]
  TOTAL SHARDS    2
  IS RUNNING      No
  RUN STATISTICS  (3 items)
  SPECS           (30 items)
  PAGINATION      {"current_page_number":1,"page_size":30,"total_pages":2,"total_records":46}

  List test entities: neetoplaydash test-entities list <project_id> <run_id>