web-apps/vendor/requirejs/tests/dataMain/dataMainIndex/index.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -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();
});