Update webpack to v3

This commit is contained in:
Jonathan Cremin 2018-04-13 01:42:16 +01:00
parent e12152f7a8
commit b87476abc9
15 changed files with 3030 additions and 6269 deletions

View file

@ -4,12 +4,12 @@ import * as amazon from '../../lib/services/amazon';
describe('Amazon', function () {
describe('lookupId', function () {
it('should find album by ID', function* () {
const result = yield amazon.lookupId('B00WMW3HFY', 'album');
const result = yield amazon.lookupId('B00V8I134A', 'album');
result.name.should.equal('In Colour [Explicit]');
});
it('should find track by ID', function* (){
const result = yield amazon.lookupId('B00WMW3TUM', 'track');
const result = yield amazon.lookupId('B00V8I1CKU', 'track');
result.name.should.equal('Sleep Sound');
});
});