web-apps/vendor/requirejs/tests/exports/moduleAndExports-tests.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

19 lines
417 B
JavaScript

require({
baseUrl: requirejs.isBrowser ? "./" : "./exports/"
},
['am'],
function(am) {
doh.register(
"moduleAndExports",
[
function moduleAndExports(t){
t.is('am', am.name);
t.is('bm', am.bName);
t.is('cm', am.cName);
}
]
);
doh.run();
}
);