@@ -171,7 +171,7 @@ tape( 'if only provided JavaScript, the server serves an HTML boilerplate and th
171
171
var flg ;
172
172
173
173
opts = {
174
- 'port' : 7331 ,
174
+ 'port' : 7332 ,
175
175
'address' : '127.0.0.1' ,
176
176
'javascript' : 'console.log("Beep");'
177
177
} ;
@@ -251,7 +251,7 @@ tape( 'if provided HTML and JavaScript, the server serves the HTML and then the
251
251
var flg ;
252
252
253
253
opts = {
254
- 'port' : 7331 ,
254
+ 'port' : 7333 ,
255
255
'address' : '127.0.0.1' ,
256
256
'html' : '<script src="/bundle.js"></script>' ,
257
257
'javascript' : 'console.log("Beep");'
@@ -329,7 +329,7 @@ tape( 'if a client only requests JavaScript, the server serves the JavaScript an
329
329
var flg ;
330
330
331
331
opts = {
332
- 'port' : 7331 ,
332
+ 'port' : 7334 ,
333
333
'address' : '127.0.0.1' ,
334
334
'javascript' : 'console.log("Beep");'
335
335
} ;
@@ -385,7 +385,7 @@ tape( 'if the server receives a request for something other than the JavaScript
385
385
var opts ;
386
386
387
387
opts = {
388
- 'port' : 7331 ,
388
+ 'port' : 7335 ,
389
389
'address' : '127.0.0.1' ,
390
390
'html' : '<h1>Beep</h1>'
391
391
} ;
@@ -431,7 +431,7 @@ tape( 'if the server receives a request while closing, the server returns a `503
431
431
var opts ;
432
432
433
433
opts = {
434
- 'port' : 7331 ,
434
+ 'port' : 7336 ,
435
435
'address' : '127.0.0.1' ,
436
436
'html' : 'Beep!'
437
437
} ;
@@ -506,7 +506,7 @@ tape( 'the function accepts `Buffer` objects for both HTML and JavaScript', func
506
506
var flg ;
507
507
508
508
opts = {
509
- 'port' : 7331 ,
509
+ 'port' : 7337 ,
510
510
'address' : '127.0.0.1' ,
511
511
'html' : string2buffer ( '<script src="/bundle.js"></script>' ) ,
512
512
'javascript' : string2buffer ( 'console.log("Beep");' )
@@ -589,7 +589,7 @@ tape( 'the server will close any persistent connections on close', function test
589
589
} ) ;
590
590
591
591
opts = {
592
- 'port' : 7331 ,
592
+ 'port' : 7338 ,
593
593
'address' : '127.0.0.1' ,
594
594
'html' : '<h1>Beep</h1>'
595
595
} ;
@@ -648,7 +648,7 @@ tape( 'if the `open` option is `true`, the function will attempt to open the con
648
648
var flg ;
649
649
650
650
opts = {
651
- 'port' : 7331 ,
651
+ 'port' : 7339 ,
652
652
'address' : '127.0.0.1' ,
653
653
'html' : '<h1>Beep</h1>' ,
654
654
'open' : true
0 commit comments