mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-01 00:43:45 +00:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
describe('JSONP', function() {
|
|
it('can request data', function() {
|
|
d3.jsonp('data/foo.jsonp?callback=d3.jsonp.foo', function(d) {
|
|
expect(d).to.eql('foo');
|
|
});
|
|
});
|
|
});
|