/** * @license RequireJS Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/jrburke/requirejs for details */ /** * Use the r.js script to run these tests. Be sure require.js is updated * in that script. */ /*jslint strict: false, evil: true */ /*global Packages: false, process: false, require: true, define: true, doh: false */ //A hack to doh to avoid dojo setup stuff in doh/runner.js var skipDohSetup = true, fs, vm, load, env; //requirejsVars = {}; (function () { if (typeof Packages !== 'undefined') { env = 'rhino'; } else if (typeof process !== 'undefined') { env = 'node'; fs = require('fs'); vm = require('vm'); load = function (path) { return vm.runInThisContext(require.makeNodeWrapper(fs.readFileSync(path, 'utf8'), path)); }; } }()); //Load the tests. load("doh/runner.js"); load('doh/_' + env + 'Runner.js'); load("simple-tests.js"); delete requirejs.s.contexts._ load("circular-tests.js"); delete requirejs.s.contexts._ load("relative/relative-tests.js"); delete requirejs.s.contexts._ load("relative/relativeBaseUrl-tests.js"); delete requirejs.s.contexts._ load("exports/exports-tests.js"); delete requirejs.s.contexts._ load("exports/moduleAndExports-tests.js"); delete requirejs.s.contexts._ load("anon/anon-tests.js"); delete requirejs.s.contexts._ load("packages/packages-tests.js"); delete requirejs.s.contexts._ load("plugins/sync-tests.js"); delete requirejs.s.contexts._ load("plugins/fromText/fromText-tests.js"); delete requirejs.s.contexts._ load("plugins/textDepend/textDepend-tests.js"); delete requirejs.s.contexts._ load("universal/universal-tests.js"); delete requirejs.s.contexts._ load("defineError/defineError-tests.js"); delete requirejs.s.contexts._ load("circular/circularPlugin-tests.js"); //Print out the final report doh.run();