web-apps/vendor/requirejs/tests/dataMain/dataMainIndex/index.js

16 lines
248 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define('a', {
name: 'a'
});
define('index', ['a'], function (a) {
doh.register(
"dataMainIndex",
[
function dataMainIndex(t){
t.is("a", a.name);
}
]
);
doh.run();
});