Skip to content

Choose a tag to compare

@github-actions github-actions released this 05 Dec 12:42
· 3 commits to main since this release
45e9676

Patch Changes

  • #273 8cf6b2f Thanks @whoiskatrin! - Add process readiness detection with port and log pattern waiting
    The Process object returned by startProcess() now includes readiness methods:
    • process.waitForPort(port, options?): Wait for process to listen on a port
      • Supports HTTP mode (default): checks endpoint returns expected status (200-399)
      • Supports TCP mode: checks port accepts connections
      • Configurable timeout, interval, path, and expected status
    • process.waitForLog(pattern, options?): Wait for pattern in process output
      • Supports string or RegExp patterns
      • Returns matching line and capture groups