| 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
 | import t from 'tap';
import {testContentFunctions} from '#test-lib';
testContentFunctions(t, 'generateAlbumTrackList (unit)', async (t, evaluate) => {
  await evaluate.load({
    mock: {
      generateAlbumTrackListItem: {
        extraDependencies: ['html'],
        data: track => track.name,
        generate: (name, {html}) =>
          html.tag('li', `Item: ${name}`),
      },
      image:
        evaluate.stubContentFunction('image'),
    },
  });
  let readDuration = false;
  const track = (name, duration) => ({
    name,
    get duration() {
      readDuration = true;
      return duration;
    },
  });
  const tracks = [
    track('Track 1', 30),
    track('Track 2', 15),
  ];
  evaluate({
    name: 'generateAlbumTrackList',
    args: [{
      trackSections: [{isDefaultTrackSection: true, tracks}],
      tracks,
    }],
  });
  t.notOk(readDuration, 'expect no access to track.duration property');
});
 |