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
|
|
|
|
|
|
|
// TODO re-enable this when Firefox 70 is released
|
|
|
|
//assert_eq!("\u{feff}bar", &identity("\u{feff}bar"));
|
2019-05-13 08:12:32 -07:00
|
|
|
}
|