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

19 lines
369 B
JavaScript

require({
baseUrl: requirejs.isBrowser ? './' : './plugins/fromText',
paths: {
'text': '../../../../text/text'
}
}, ['refine!a'],
function (a) {
doh.register(
'pluginsFromText',
[
function pluginsFromText(t){
t.is('a', a.name);
}
]
);
doh.run();
});