forked from rustwasm/wasm-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
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"); | ||
console::time_using_label("test label"); | ||
console::time_end_using_label("test label"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace math_test { | ||
long add_one(long val); | ||
double pow(double base, double exponent); | ||
long add_one(long val); | ||
double pow(double base, double exponent); | ||
}; |