1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-03-22 13:10:51 +00:00

10 lines
192 B
Rust
Raw Normal View History

use wasm_bindgen_test::*;
use wasm_bindgen::prelude::*;
use web_sys::console;
#[wasm_bindgen_test]
fn test_console() {
console::time("test label");
console::time_end("test label");
}