DocumentServer/OfficeWeb/vendor/requirejs/tests/dataMain/dataMainIndex/index.js

16 lines
248 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
define('a', {
name: 'a'
});
define('index', ['a'], function (a) {
doh.register(
"dataMainIndex",
[
function dataMainIndex(t){
t.is("a", a.name);
}
]
);
doh.run();
});