DocumentServer/OfficeWeb/vendor/requirejs/tests/dataMain/dataMainIndex/index.js
2015-04-28 17:59:00 +03:00

16 lines
248 B
JavaScript

define('a', {
name: 'a'
});
define('index', ['a'], function (a) {
doh.register(
"dataMainIndex",
[
function dataMainIndex(t){
t.is("a", a.name);
}
]
);
doh.run();
});