From: Yadd Date: Fri, 8 Nov 2024 04:35:57 +0000 (+0000) Subject: drop one error test that fail under Debian env X-Git-Tag: archive/raspbian/7.3.0+dfsg1+_cs24.12.11-1+rpi1~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=86f2d346909c36c989e97d48a1257f4df6d4b89d;p=node-undici.git drop one error test that fail under Debian env Forwarded: not-needed Last-Update: 2023-11-26 Gbp-Pq: Name drop-one-error-test.patch --- diff --git a/test/client-dispatch.js b/test/client-dispatch.js index c3de37a..13745e4 100644 --- a/test/client-dispatch.js +++ b/test/client-dispatch.js @@ -782,34 +782,3 @@ test('dispatch onBodySent async-iterable', (t) => { }) }) }) - -test('dispatch onBodySent throws error', (t) => { - const server = http.createServer((req, res) => { - res.end('ended') - }) - t.teardown(server.close.bind(server)) - - server.listen(0, () => { - const client = new Pool(`http://localhost:${server.address().port}`) - t.teardown(client.close.bind(client)) - const body = 'hello' - client.dispatch({ - path: '/', - method: 'POST', - body - }, { - onBodySent (chunk) { - throw new Error('fail') - }, - onError (err) { - t.type(err, Error) - t.equal(err.message, 'fail') - t.end() - }, - onConnect () {}, - onHeaders () {}, - onData () {}, - onComplete () {} - }) - }) -})