diff options
author | stuebinm | 2021-04-04 02:59:42 +0200 |
---|---|---|
committer | stuebinm | 2021-04-04 03:01:19 +0200 |
commit | bc8ac4057203f02ab8a897650d6ea519cac299cb (patch) | |
tree | 5708d1bbdb1b4a457c4a14a32fa14730efdb7305 /age-wasm/tests | |
parent | f111b082493bfc57dbe3fa1edf74581b5957c18f (diff) |
age-wasm: move into subdirectory
Diffstat (limited to 'age-wasm/tests')
-rw-r--r-- | age-wasm/tests/web.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/age-wasm/tests/web.rs b/age-wasm/tests/web.rs new file mode 100644 index 0000000..de5c1da --- /dev/null +++ b/age-wasm/tests/web.rs @@ -0,0 +1,13 @@ +//! Test suite for the Web and headless browsers. + +#![cfg(target_arch = "wasm32")] + +extern crate wasm_bindgen_test; +use wasm_bindgen_test::*; + +wasm_bindgen_test_configure!(run_in_browser); + +#[wasm_bindgen_test] +fn pass() { + assert_eq!(1 + 1, 2); +} |