testx/plugin/reporters/mod.rs
1//! Built-in reporter plugins for testx.
2//!
3//! Each reporter generates output in a specific format:
4//! - **Markdown**: Human-readable Markdown report
5//! - **GitHub**: GitHub Actions annotations
6//! - **HTML**: Self-contained HTML report
7//! - **Notify**: Desktop notifications
8
9pub mod github;
10pub mod html;
11pub mod markdown;
12pub mod notify;