web-apps/vendor/requirejs/tests/plugins/fromText/fromText-tests.js

19 lines
369 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
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();
});