indexed.js
1.02 KB
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
var sort = require('../');
var test = require('tap').test;
var through = require('through2');
test('indexed', function (t) {
t.plan(1);
var s = sort({ index: true });
var rows = [];
function write (row, enc, next) { rows.push(row); next() }
function end () {
t.deepEqual(rows, [
{
id: '/bar.js',
deps: {},
index: 1,
indexDeps: {}
},
{
id: '/foo.js',
deps: { './bar': '/bar.js' },
index: 2,
indexDeps: { './bar': 1 }
},
{
id: '/main.js',
deps: { './foo': '/foo.js' },
index: 3,
indexDeps: { './foo': 2 }
},
]);
}
s.pipe(through.obj(write, end));
s.write({ id: '/main.js', deps: { './foo': '/foo.js' } });
s.write({ id: '/foo.js', deps: { './bar': '/bar.js' } });
s.write({ id: '/bar.js', deps: {} });
s.end();
});