mirror of https://github.com/pelias/api.git
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.
1.1 KiB
1.1 KiB
jsonp
Generated: Thu Nov 06 2014 11:44:19 GMT-0500 (EST)
Request
{
"protocol": "http:",
"host": "localhost",
"method": "GET",
"port": 3100,
"path": "/?callback=test"
}
Response
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": "Thu, 06 Nov 2014 16:44:19 GMT",
"connection": "close"
}
test({"name":"pelias-api","version":{"number":"0.0.0"}});
Tests
✓ content-type header correctly set
response.should.have.header 'Content-Type','application/javascript; charset=utf-8'
✓ should respond with jsonp
should.exist response.body
response.body.substr(0,5).should.equal 'test(';