diff options
author | ali ahmed <48116123+AliBasicCoder@users.noreply.github.com> | 2021-01-19 22:58:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-19 21:58:57 +0100 |
commit | 973c33c8995f63da187daa6a434333315192b521 (patch) | |
tree | b848a6d51a44e0b190169c586c4eec6f625d8f55 /op_crates/web/lib.rs | |
parent | 0e8e6d7251c34e8cd961e0fae9b0ff7d2ff00a58 (diff) |
feat(web): add utf-16 and big5 to TextEncoder/TextDecoder (#8108)
Diffstat (limited to 'op_crates/web/lib.rs')
-rw-r--r-- | op_crates/web/lib.rs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/op_crates/web/lib.rs b/op_crates/web/lib.rs index 79f810fb5..209183d81 100644 --- a/op_crates/web/lib.rs +++ b/op_crates/web/lib.rs @@ -159,20 +159,4 @@ mod tests { } }); } - - #[test] - fn test_text_encoding() { - run_in_task(|mut cx| { - let mut isolate = setup(); - isolate - .execute( - "text_encoding_test.js", - include_str!("text_encoding_test.js"), - ) - .unwrap(); - if let Poll::Ready(Err(_)) = isolate.poll_event_loop(&mut cx) { - unreachable!(); - } - }); - } } |