You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							510 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							510 B
						
					
					
				var Buffer = require('buffer').Buffer | 
						|
var test = require('tape') | 
						|
 | 
						|
var http = require('../..') | 
						|
 | 
						|
test('cookie', function (t) { | 
						|
  var cookie = 'hello=world' | 
						|
  window.document.cookie = cookie | 
						|
 | 
						|
  http.get({ | 
						|
    path: '/cookie', | 
						|
    withCredentials: false | 
						|
  }, function (res) { | 
						|
    var buffers = [] | 
						|
 | 
						|
    res.on('end', function () { | 
						|
      t.ok(new Buffer(cookie).equals(Buffer.concat(buffers)), 'hello cookie echoed') | 
						|
      t.end() | 
						|
    }) | 
						|
 | 
						|
    res.on('data', function (data) { | 
						|
      buffers.push(data) | 
						|
    }) | 
						|
  }) | 
						|
})
 | 
						|
 |