# jsonp *Generated: Fri Sep 19 2014 14:38:01 GMT+0100 (BST)* ## Request ```javascript { "protocol": "http:", "host": "localhost", "method": "GET", "port": 3100, "path": "/?callback=test" } ``` ## Response ```javascript Status: 200 { "x-powered-by": "mapzen", "charset": "utf8", "cache-control": "public,max-age=60", "server": "Pelias/0.0.0", "access-control-allow-origin": "*", "access-control-allow-methods": "GET", "access-control-allow-headers": "X-Requested-With,content-type", "access-control-allow-credentials": "true", "content-type": "application/javascript; charset=utf-8", "content-length": "57", "etag": "W/\"39-b8a2aba1\"", "date": "Fri, 19 Sep 2014 13:38:01 GMT", "connection": "close" } ``` ```html test({"name":"pelias-api","version":{"number":"0.0.0"}}); ``` ## Tests ### ✓ should respond with jsonp ```javascript should.exist response.body response.body.substr(0,5).should.equal 'test('; ``` ### ✓ content-type header correctly set ```javascript response.should.have.header 'Content-Type','application/javascript; charset=utf-8' ```