multi_bundle.js
2.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
var browserify = require('../');
var vm = require('vm');
var test = require('tap').test;
test('multi bundle', function (t) {
t.plan(5);
var core = browserify();
core.require(__dirname + '/multi_bundle/b.js', { expose: true });
var app = browserify([__dirname + '/multi_bundle/a.js']);
// inform this bundle that b exists in another bundle
app.external(__dirname + '/multi_bundle/b.js');
core.bundle(function (err, src) {
var c = {
console: console,
t : t,
baton: {
times: 0
}
};
// loading core will cause no require to run
vm.runInNewContext(src, c);
t.equal(c.baton.times, 0);
// loading the app will require
app.bundle(function (err, src) {
vm.runInNewContext(src, c);
// b required for the first time
t.equal(c.baton.times, 1);
// running the file again
// because it is using the same b, no reloading
vm.runInNewContext(src, c);
// b should not have been required again
// because it was part of the core bundle
t.equal(c.baton.times, 1);
});
});
});
// re-enable this in future releases
test('multi bundle', function (t) {
t.plan(8);
var core = browserify({ exposeAll: true });
core.require(__dirname + '/multi_bundle/a.js', { expose: true });
var app = browserify([__dirname + '/multi_bundle/c.js']);
// inform this bundle that b exists in another bundle
app.external(core);
core.bundle(function (err, src) {
var c = {
console: console,
t : t,
baton: {
times: 0
}
};
// loading core will cause no require to run
vm.runInNewContext(src, c);
t.equal(c.baton.times, 0);
// loading the app will require
app.bundle(function (err, src) {
vm.runInNewContext(src, c);
// b required for the first time
t.equal(c.baton.times, 1);
// running the file again
// because it is using the same b, no reloading
vm.runInNewContext(src, c);
// b should not have been required again
// because it was part of the core bundle
t.equal(c.baton.times, 1);
});
});
});