Fix tests, upgrade node

This commit is contained in:
Jonathan Cremin 2020-01-17 19:25:55 +00:00
parent 08b121f96f
commit c4354a6600
4 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
FROM node:10.15.3-alpine
FROM node:12.14.1-alpine3.11
WORKDIR /app

View file

@ -1,4 +1,4 @@
FROM node:10.15.3-alpine
FROM node:12.14.1-alpine3.11
WORKDIR /app

View file

@ -22,7 +22,7 @@ describe('Google Play Music', () => {
it('should find track by search', async function (){
const result = await google.search({type: 'track', artist: {name: 'Jamie xx'}, albumName: 'In Colour', name: 'Loud Places'});
result.name.should.equal('Loud Places');
result.name.should.equal('Loud Places (feat. Romy)');
});
it('should find awkward track by search', async function (){

View file

@ -23,7 +23,7 @@ describe('iTunes Music', function(){
it('should find awkward album by search', async function (){
const result = await itunes.search({type: 'album', artist: {name: 'Anavitória'}, name: 'Fica'});
result.name.should.equal('Fica AnaVitoria - Single');
result.name.should.equal('Fica (feat. Matheus & Kauan) - Single');
});
it('should find track by search', async function (){