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
12
13
14
//! Log event passed to on_log callback.
//! Serializable for easy export to JSON reports.

use serde::{Deserialize, Serialize};

/// Event emitted during test execution.
/// All events carry timestamp and can be serialized to JSON.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EnvLog {
    /// ISO 8601 timestamp.
    pub timestamp: String,
    /// Human-readable message.
    pub message: String,
}