blob: 6c0788b27226b81cf8f01776eed18a430baaa5e9 [file] [log] [blame]
#[wasm_bindgen_test]
#[should_panic]
fn should_panic() {
panic!()
}
#[wasm_bindgen_test]
#[should_panic = "error message"]
fn should_panic_string() {
panic!("error message")
}
#[wasm_bindgen_test]
#[should_panic(expected = "error message")]
fn should_panic_expected() {
panic!("error message")
}