mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-01 09:51:06 +00:00
29 lines
433 B
Rust
29 lines
433 B
Rust
|
use wasm_bindgen_test::*;
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen(module = "tests/wasm/rethrow.js")]
|
||
|
extern {
|
||
|
fn call_throw_one();
|
||
|
fn call_ok();
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen_test]
|
||
|
fn err_works() {
|
||
|
call_throw_one();
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub fn throw_one() -> Result<u32, JsValue> {
|
||
|
Err(1.into())
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen_test]
|
||
|
fn ok_works() {
|
||
|
call_ok();
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub fn nothrow() -> Result<u32, JsValue> {
|
||
|
Ok(1)
|
||
|
}
|