swc/crates/swc_timer/tests/timer.rs

12 lines
166 B
Rust
Raw Normal View History

use swc_timer::timer;
#[test]
fn logging() {
testing::run_test(false, |_, _| {
let _timer = timer!("operation");
Ok(())
})
.unwrap();
}