web-apps/vendor/requirejs/tests/plugins/textDepend/textDepend-tests.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -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();
});