forked from nukeop/nuclear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpitchfork.test.js
50 lines (46 loc) · 1.66 KB
/
pitchfork.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {
getBestNewAlbums,
getBestNewTracks
} from 'pitchfork-bnm';
import { expect } from 'chai';
describe('Pitchfork API tests', () => {
it('gets best new albums', async () => {
const result = await getBestNewAlbums().
then(albums => {
return albums;
})
.catch(error => {
console.error(error);
expect(false).to.equal(true);
});
expect(result).to.be.an('array');
result.forEach(entry => {
expect(entry).to.be.an('object').that.has.all.keys('thumbnail',
'artist',
'title',
'reviewUrl',
'genres',
'score',
'abstract',
'review');
});
});
it('gets best new tracks', async () => {
const result = await getBestNewTracks().
then(tracks => {
return tracks;
})
.catch(error => {
console.error(error);
expect(false).to.equal(true);
});
expect(result).to.be.an('array');
result.forEach(entry => {
expect(entry).to.be.an('object').that.has.all.keys('thumbnail',
'artist',
'title',
'reviewUrl',
'review');
});
});
});