Skip to content

tuistory@0.11.0

Latest

Choose a tag to compare

@remorses remorses released this 10 Aug 17:29
· 3 commits to main since this release
  1. Configurable terminal idle delay — programmatic users can reduce the default 200ms settling delay when their TUI renders atomically or their tests use a stronger readiness check. This can substantially reduce large PTY test suite runtimes while preserving the safer default behavior:

    const session = await launchTerminal({
      command: 'my-tui',
      idleDelayMs: 60,
    })

    The implicit waitIdle() timeout now grows with longer configured delays. Explicit waitIdle({ timeout }) values still take precedence.

  2. Silent processes now launch and restart successfully — commands such as sleep and listening ffmpeg processes no longer fail when they produce no startup output. Tuistory keeps the live session running and prints a warning that suggests --no-wait for expected silence.

Thanks @benvinegar for #5!