24 lines
579 B
JavaScript
24 lines
579 B
JavaScript
require({
|
|
bundles: {
|
|
'main': ['util', 'main'],
|
|
'second': ['other'],
|
|
'third': ['third']
|
|
}
|
|
}, ['util', 'other', 'third'], function (util, other, third) {
|
|
|
|
require(['main'], function (main) {
|
|
doh.register(
|
|
'bundles',
|
|
[
|
|
function bundles(t){
|
|
t.is('util', util.name);
|
|
t.is('other', other.name);
|
|
t.is('third', third.name);
|
|
t.is('main', main.name);
|
|
}
|
|
]
|
|
);
|
|
doh.run();
|
|
});
|
|
});
|