This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/web-sys/tests/wasm/console.rs

9 lines
184 B
Rust

use wasm_bindgen_test::*;
use web_sys::console;
#[wasm_bindgen_test]
fn test_console() {
console::time_with_label("test label");
console::time_end_with_label("test label");
}