From 51b57f66cfd5e0e788a934d3d346102ecd52e60d Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 10 Mar 2017 13:39:02 -0800 Subject: [PATCH] test: remove UDP request handler test -- not possible --- test/request-handler.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/request-handler.js b/test/request-handler.js index 978ea7e..7c8fe80 100644 --- a/test/request-handler.js +++ b/test/request-handler.js @@ -59,10 +59,8 @@ test('http: request handler option intercepts announce requests and responses', testRequestHandler(t, 'http') }) -test('udp: request handler option intercepts announce requests and responses', function (t) { - testRequestHandler(t, 'udp') -}) - test('ws: request handler option intercepts announce requests and responses', function (t) { testRequestHandler(t, 'ws') }) + +// NOTE: it's not possible to include extra data in a UDP response, because it's compact and accepts only params that are in the spec!