-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtree-to-array_test.js
37 lines (35 loc) · 1.03 KB
/
tree-to-array_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
'use strict';
import { videos } from '../lib/tree-to-array.js';
let expect = require('chai').expect;
describe('Videos tests', () => {
it('should have correct list of videos', () => {
expect(JSON.stringify(videos)).to.equal(
'[' +
'{' +
'"id":70111470,' +
'"title":"Die Hard",' +
'"time":323133,' +
'"url":"http://cdn-0.nflximg.com/images/2891/DieHard150.jpg"' +
'},' +
'{' +
'"id":654356453,' +
'"title":"Bad Boys",' +
'"time":6575665,' +
'"url":"http://cdn-0.nflximg.com/images/2891/BadBoys140.jpg"' +
'},' +
'{' +
'"id":65432445,' +
'"title":"The Chamber",' +
'"time":3452343,' +
'"url":"http://cdn-0.nflximg.com/images/2891/TheChamber130.jpg"' +
'},' +
'{' +
'"id":675465,' +
'"title":"Fracture",' +
'"time":3453434,' +
'"url":"http://cdn-0.nflximg.com/images/2891/Fracture120.jpg"' +
'}' +
']'
);
});
});