2019-05-13 08:12:32 -07:00
|
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
use wasm_bindgen_test::*;
|
|
|
|
|
|
|
|
#[wasm_bindgen(module = "/tests/headless/strings.js")]
|
|
|
|
extern "C" {
|
2019-07-11 13:26:46 -07:00
|
|
|
fn test_string_roundtrip(c: &Closure<dyn Fn(String) -> String>);
|
2019-08-23 05:00:49 +02:00
|
|
|
|
|
|
|
fn identity(s: &str) -> String;
|
2019-05-13 08:12:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen_test]
|
|
|
|
fn string_roundtrip() {
|
|
|
|
test_string_roundtrip(&Closure::wrap(Box::new(|s| s)));
|
2019-08-23 05:00:49 +02:00
|
|
|
|
2020-03-04 16:19:36 -06:00
|
|
|
assert_eq!("\u{feff}bar", &identity("\u{feff}bar"));
|
2019-05-13 08:12:32 -07:00
|
|
|
}
|