We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a7b412 commit 6d5fc3dCopy full SHA for 6d5fc3d
tests/headless/strings.js
@@ -13,8 +13,7 @@ export function test_string_roundtrip(f) {
13
test('a longer string');
14
test('a longer 💖 string');
15
16
- // TODO re-enable this when Firefox 70 is released
17
- //test('\uFEFFbar');
+ test('\uFEFFbar');
18
}
19
20
export function identity(s) {
tests/headless/strings.rs
@@ -12,6 +12,5 @@ extern "C" {
12
fn string_roundtrip() {
test_string_roundtrip(&Closure::wrap(Box::new(|s| s)));
- //assert_eq!("\u{feff}bar", &identity("\u{feff}bar"));
+ assert_eq!("\u{feff}bar", &identity("\u{feff}bar"));
0 commit comments