Skip to main content

turbo_tasks_testing/
lib.rs

1//! Testing utilities and macros for turbo-tasks and applications based on it.
2
3pub mod retry;
4mod run;
5
6pub use crate::run::{
7    Registration, TestInstance, run, run_once, run_once_without_cache_check, run_with_tt,
8    run_without_cache_check, test_instance,
9};