JSPM

vybtest

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21166F
  • License MIT

AI-Native Testing Framework - Write tests in YAML, get structured output for autonomous TDD

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vybtest) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Vyb

    Vyb

    AI-Native Testing Framework

    Write tests in YAML. Get structured output with actual/expected values and hints.
    Let AI fix your code autonomously.

    build npm version npm downloads license

    WebsiteGitHubQuick Start


    Installation

    npm install -g vybtest

    Quick Start

    Create player.ts.vyb:

    "player starts with full health":
      confidence: 0.95
      when:
        - "player = createPlayer(100, 100)"
      then:
        - "expect: player.health == 100"

    Run:

    vyb run tests/

    Output:

    tests:
      - name: player starts with full health
        status: fail
        actual: 50
        expected: 100
        hints:
          - The equality check failed

    Your AI reads the structured output, sees actual: 50 vs expected: 100, and fixes the code.

    Why Vyb

    Traditional test output is designed for humans. Stack traces, diff formatting, ANSI colors. Your AI has to guess what went wrong.

    Vyb outputs structured YAML with:

    • Actual and expected values
    • Failure location
    • Pattern-matched hints
    • Confidence guidance

    Zero API calls. Zero cost. Just tests that tell AI exactly what failed.

    Documentation

    Full documentation at vybtest.com

    License

    MIT