summaryrefslogtreecommitdiff
path: root/tests/qml/tst_webchannel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qml/tst_webchannel.qml')
-rw-r--r--tests/qml/tst_webchannel.qml10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/qml/tst_webchannel.qml b/tests/qml/tst_webchannel.qml
index 160a1af..dddba71 100644
--- a/tests/qml/tst_webchannel.qml
+++ b/tests/qml/tst_webchannel.qml
@@ -56,14 +56,4 @@ WebChannelTest {
webChannel.sendMessage("myMessage", "foobar");
compare(awaitRawMessage(), "myMessagePong:foobar");
}
-
- function test_respondMessage()
- {
- loadUrl("respond.html");
- var msg = awaitMessage();
- verify(msg.id);
- compare(msg.data, "foobar");
- webChannel.respond(msg.id, "barfoo");
- compare(awaitRawMessage(), "received:barfoo");
- }
}