DocumentServer/OfficeWeb/vendor/requirejs/tests/isBrowser/isBrowser-tests.js

18 lines
337 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
require({
baseUrl: "./"
},
["a"],
function(a) {
doh.register(
"isBrowser",
[
function isBrowser(t){
t.is(true, a.isBrowser);
t.is(true, requirejs.isBrowser);
}
]
);
doh.run();
}
);