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

19 lines
386 B
JavaScript
Raw Normal View History

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