combine.fm/test/lookup.js

10 lines
308 B
JavaScript
Raw Normal View History

2015-06-03 21:45:54 -07:00
import 'should';
2020-01-18 10:19:20 +00:00
import lookup from '../lib/lookup.js';
2015-01-06 12:58:57 +00:00
describe('Search with url', function(){
2018-04-30 22:20:01 +01:00
it('should find album by url', async function (){
const result = await lookup('https://play.google.com/music/listen#/album/Bz6wrjczddcj5hurijsv6ohdoay');
2015-06-03 21:45:54 -07:00
result.name.should.equal('Phase 5');
2015-01-06 12:58:57 +00:00
});
2015-06-03 21:45:54 -07:00
});