mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
18 lines
331 B
Rust
18 lines
331 B
Rust
/// Test harnesses for WASM things.
|
|
///
|
|
/// Here be crabs with troubling pasts.
|
|
///
|
|
/// Run this on a mac with Safari using the following command:
|
|
///
|
|
/// ```shell
|
|
/// wasm-pack test --safari
|
|
/// ```
|
|
use wasm_bindgen_test::*;
|
|
|
|
wasm_bindgen_test_configure!(run_in_browser);
|
|
|
|
#[wasm_bindgen_test]
|
|
fn pass() {
|
|
assert_eq!(1, 1);
|
|
}
|