sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
1.0 KiB

define(["dojo/sniff", "doh/main", "require"], function(has, doh, require){
if(doh.isBrowser){
doh.register("testsDOH._base.html", require.toUrl("./html.html"), 15000);
doh.register("testsDOH._base.html_id", require.toUrl("./html_id.html"), 15000);
doh.register("testsDOH._base.html_element", require.toUrl("./html_element.html"), 15000);
doh.register("testsDOH._base.html_rtl", require.toUrl("./html_rtl.html"), 15000);
// IE9+ cannot handle loading quirks mode documents inside the test runner, see #14321
has("ie") >= 9 || doh.register("testsDOH._base.html_quirks", require.toUrl("./html_quirks.html"), 15000);
doh.register("testsDOH._base.html_box", require.toUrl("./html_box.html"), 35000);
has("ie") >= 9 || doh.register("testsDOH._base.html_box_quirks", require.toUrl("./html_box_quirks.html"), 35000);
doh.register("testsDOH._base.html_isBodyLtr", require.toUrl("./html_isBodyLtr.html"), 35000);
doh.register("testsDOH._base.html_docScroll", require.toUrl("./html_docScroll.html"), 35000);
}
});