source: Dev/trunk/src/client/dojo/tests/request.js @ 485

Last change on this file since 485 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 579 bytes
Line 
1define([
2        "require",
3        "doh/main",
4        "./request/handlers",
5        "../has!host-node?./request/node"
6], function(require, doh){
7        if(doh.isBrowser){
8                doh.register("tests.request.xhr", require.toUrl("./request/xhr.html"), 60000);
9                doh.register("tests.request.script", require.toUrl("./request/script.html"), 60000);
10                doh.register("tests.request.iframe", require.toUrl("./request/iframe.html"), 60000);
11                doh.register("tests.request.registry", require.toUrl("./request/registry.html"), 60000);
12                doh.register("tests.request.notify", require.toUrl("./request/notify.html"), 60000);
13        }
14});
Note: See TracBrowser for help on using the repository browser.