web-apps/vendor/requirejs/tests/isBrowser/isBrowser-tests.js

18 lines
337 B
JavaScript
Raw Normal View History

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