More bluebird, fetch larger artwork

This commit is contained in:
Jonathan Cremin 2014-12-13 12:05:47 +00:00
parent e671b823e9
commit 23896f7ee6
16 changed files with 117 additions and 81 deletions

View file

@ -12,6 +12,13 @@ describe('Spotify', function(){
done();
});
});
it('should find track by ID', function(done){
spotify.lookupId("7dS5EaCoMnN7DzlpT6aRn2", "track").then(function(result) {
result.name.should.equal("Take Me To Church");
done();
});
});
});
describe('search', function(){