DocumentServer/OfficeWeb/vendor/requirejs/tests/plugins/textDepend/textDepend-tests.js
2015-04-28 17:59:00 +03:00

19 lines
386 B
JavaScript

require({
baseUrl: requirejs.isBrowser ? './' : './plugins/textDepend',
paths: {
'text': '../../../../text/text'
}
}, ['textDepend!a'],
function (textValue) {
doh.register(
'textDepend',
[
function textDepend(t){
t.is('hello world', textValue);
}
]
);
doh.run();
});