vibe-tests 0.0.1

Integration test framework for MCP servers with LLM-powered tool calling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Per-test environment passed to on_run callback.
//! Provides isolated home directory and current model name.

/// Environment for each test iteration.
/// Created fresh before each test() call with the current model.
pub struct EnvRun {
    /// Isolated home directory for this test run.
    pub home: String,
    /// Ollama model being used for this test query.
    pub model: String,
}