Skip to content
livetest v0.1.0
Install

VSCode extension

A dedicated panel with the tree of watched files, the status of each one, the reason it ran in the tooltip, and the complete log of every run.

Install it from the Visual Studio Marketplace.

What it does

  • File tree with per-file status: idle, running, passed, failed, errored, skipped. Directories inherit the worst status of their children, so a failure buried deep shows up at the root.
  • Reason in the tooltip. Hover a file and read "ran because src/header.ts imports src/login.ts (1 level)".
  • Failures as children of the file in the tree, with the assertion message.
  • Editor diagnostics, marking the files that failed.
  • Log channel with the history of every batch.
  • Status bar item with the connection state.

Connection

The extension does not start the daemon on its own. It looks for one already running through .livetest/daemon.json and:

  • found it, it connects, receives the full snapshot and starts receiving live events;
  • did not find it, it shows the Start daemon button, which opens a terminal with the configured command. The action stays yours.

If the daemon goes down, the extension reconnects on its own at the configured interval.

Why it never starts the daemon by itself

Starting a long-lived process without being asked is the kind of thing that surprises someone at the worst moment. The button makes the decision explicit, and the terminal it opens shows exactly what was run.

Commands

CommandWhat it does
Live Test: Connect to daemonforces a connection attempt
Live Test: Start daemonopens a terminal with the configured command
Live Test: Stop daemonsends SIGTERM to the daemon
Live Test: Refreshredraws the tree
Live Test: Open run logopens the log channel
Live Test: Run tests for this fileruns livetest run on the file

Settings

KeyDefaultMeaning
livetest.discoveryFile.livetest/daemon.jsonwhere to look for the daemon
livetest.startCommandnpx livetest startcommand behind the "Start daemon" button
livetest.reconnectIntervalMs3000interval between reconnection attempts
livetest.revealFailurestruemark failures in the editor

Independence from the editor

The core runs entirely in the terminal. The extension is a visualization layer only, which means the agent flow works with the editor closed, and the panel is a convenience rather than a requirement.