@@ -6,32 +6,32 @@ describe('params', function () {
66
77 describe ( 'uri' , function ( ) {
88
9- describe ( 'not passed' , function ( ) {
10-
11- var ldp = ldnode . createServer ( {
12- base : __dirname
13- } ) ;
14- ldp . listen ( 3456 ) ;
15-
16- it ( 'should be the proxy value if exist' , function ( done ) {
17- done ( ) ;
18- } )
19-
20- it ( 'should be localhost if no proxy' , function ( done ) {
21- done ( ) ;
22- } )
23- } )
24-
25- describe ( 'passed' , function ( ) {
26- var ldp = ldnode . createServer ( {
27- uri : 'http://example.com' ,
28- base : __dirname
29- } ) ;
30- ldp . listen ( 3456 ) ;
31- it ( 'should not use proxy' , function ( done ) {
32- done ( ) ;
33- } )
34- } )
9+ // describe('not passed', function () {
10+
11+ // var ldp = ldnode.createServer({
12+ // base: __dirname
13+ // });
14+ // ldp.listen(3456);
15+
16+ // it('should be the proxy value if exist', function (done) {
17+ // done();
18+ // })
19+
20+ // it('should be localhost if no proxy', function (done) {
21+ // done();
22+ // })
23+ // })
24+
25+ // describe('passed', function() {
26+ // var ldp = ldnode.createServer({
27+ // uri: 'http://example.com',
28+ // base: __dirname
29+ // });
30+ // ldp.listen(3456);
31+ // it ('should not use proxy', function (done) {
32+ // done();
33+ // })
34+ // })
3535 } )
3636
3737 describe ( 'base' , function ( ) {
0 commit comments