tracing-tree 0.4.1

A Tracing Layer which prints a tree of spans and events.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ui_test::{color_eyre::Result, run_tests, Config, Mode, OutputConflictHandling};

fn main() -> Result<()> {
    let mut config = Config::default();
    config.root_dir = "examples".into();
    config.dependencies_crate_manifest_path = Some("test_dependencies/Cargo.toml".into());
    config.args.push("--cfg".into());
    config.args.push("feature=\"tracing-log\"".into());
    config.out_dir = Some("target/ui_test".into());
    config.mode = Mode::Run { exit_code: 0 };
    config.output_conflict_handling = if std::env::args().any(|arg| arg == "--bless") {
        OutputConflictHandling::Bless
    } else {
        OutputConflictHandling::Error
    };
    run_tests(config)
}