We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3dd1db commit a4a215eCopy full SHA for a4a215e
tests/io/socket/AbstractTestSocketIO.java
@@ -377,6 +377,15 @@ public void reconnectInvalidated() throws Exception {
377
}
378
379
380
+ @Test(timeout = TIMEOUT)
381
+ public void sendUtf8() throws Exception {
382
+ doConnect();
383
+ socket.emit("fooo", "\uD83C\uDF84");
384
+ socket.emit("fooo", "🎄");
385
+ assertEquals("on", takeEvent());
386
+ doClose();
387
+ }
388
+
389
// END TESTS
390
391
/**
@@ -513,5 +522,4 @@ public int getPort() {
513
522
public int getProxyPort() {
514
523
return getPort() + (proxy == null ? 0 : 1);
515
524
516
-
517
525
0 commit comments