DocumentServer/OfficeWeb/vendor/requirejs/tests/plugins/fromText/fromText-tests.js
2015-04-28 17:59:00 +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();
});