source: Dev/trunk/src/client/dojox/mvc/tests/1.7/robot/moduleFullSet.js

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

Added Dojo 1.9.3 release.

File size: 2.0 KB
Line 
1define([
2        "doh/runner",
3        "dojo/_base/sniff",
4        "../../../equals",
5        "../../StatefulModelOptions"
6], function(doh, has){
7        try{
8                var userArgs = window.location.search.replace(/[\?&](dojoUrl|testUrl|testModule)=[^&]*/g, "").replace(/^&/, "?");
9
10                // only run the 1.7 Robot tests
11                if(!has("ie")){
12                        // Hit an error with the mobile parser with IE, need to investigate more
13                        doh.registerUrl("dojox.mvc.tests.1.7.robot.mobile-demo-test", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mobile-demo-test.html"+userArgs), 999999);
14                        doh.registerUrl("dojox.mvc.tests.1.7.robot.android_repeat-ins", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/android_repeat-ins.html"+userArgs), 999999);
15                }
16                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_shipto-billto-simple", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_shipto-billto-simple.html"+userArgs), 999999);
17                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_generate-view", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_generate-view.html"+userArgs), 999999);
18                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_loan-stateful", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_loan-stateful.html"+userArgs), 999999);
19                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_ref-set-repeat", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_ref-set-repeat.html"+userArgs), 999999);
20                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_search-results-repeat", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_search-results-repeat.html"+userArgs), 999999);
21                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_search-results-ins-del", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_search-results-ins-del.html"+userArgs), 999999);
22                doh.registerUrl("dojox.mvc.tests.1.7.robot.iphone_shipto-billto", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/iphone_shipto-billto.html"+userArgs), 999999);
23                doh.registerUrl("dojox.mvc.tests.1.7.robot.mvc_shipto-billto-hierarchical", dojo.moduleUrl("dojox.mvc","tests/1.7/robot/mvc_shipto-billto-hierarchical.html"+userArgs), 999999);
24        }catch(e){
25                doh.debug(e);
26        }
27});
Note: See TracBrowser for help on using the repository browser.