@@ -214,7 +214,6 @@ describe('routeBackbeat', () => {
214214
215215 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
216216
217- /* eslint-disable-next-line no-void */
218217 void await endPromise ;
219218
220219 assert . strictEqual ( mockResponse . statusCode , 200 ) ;
@@ -244,7 +243,6 @@ describe('routeBackbeat', () => {
244243
245244 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
246245
247- /* eslint-disable-next-line no-void */
248246 void await endPromise ;
249247
250248 assert . strictEqual ( mockResponse . statusCode , 500 ) ;
@@ -260,7 +258,6 @@ describe('routeBackbeat', () => {
260258
261259 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
262260
263- /* eslint-disable-next-line no-void */
264261 void await endPromise ;
265262
266263 assert . strictEqual ( mockResponse . statusCode , 405 ) ;
@@ -284,7 +281,6 @@ describe('routeBackbeat', () => {
284281 mockRequest . destroy = ( ) => { } ;
285282 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
286283
287- /* eslint-disable-next-line no-void */
288284 void await endPromise ;
289285 assert . strictEqual ( mockResponse . statusCode , 403 ) ;
290286 } ) ;
@@ -315,7 +311,6 @@ describe('routeBackbeat', () => {
315311
316312 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
317313
318- /* eslint-disable-next-line no-void */
319314 void await endPromise ;
320315 assert . strictEqual ( mockResponse . statusCode , 200 ) ;
321316 assert . deepStrictEqual ( mockResponse . body , null ) ;
@@ -348,7 +343,6 @@ describe('routeBackbeat', () => {
348343
349344 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
350345
351- /* eslint-disable-next-line no-void */
352346 void await endPromise ;
353347 assert . strictEqual ( mockResponse . statusCode , 200 ) ;
354348 assert . deepStrictEqual ( mockResponse . body , { } ) ;
@@ -380,7 +374,6 @@ describe('routeBackbeat', () => {
380374
381375 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
382376
383- /* eslint-disable-next-line no-void */
384377 void await endPromise ;
385378 assert . strictEqual ( mockResponse . statusCode , 200 ) ;
386379 } ) ;
@@ -424,7 +417,6 @@ describe('routeBackbeat', () => {
424417
425418 routeBackbeat ( '127.0.0.1' , mockRequest , mockResponse , log ) ;
426419
427- /* eslint-disable-next-line no-void */
428420 void await endPromise ;
429421 assert . strictEqual ( mockResponse . statusCode , 200 ) ;
430422 assert . deepStrictEqual ( mockResponse . body , null ) ;
0 commit comments