'use strict'; var glob = require('glob'); var JasmineRunner = require('jasmine'); var path = require('path'); // require('es6-shim/es6-shim.js'); require('zone.js/dist/zone-node.js'); require('zone.js/dist/long-stack-trace-zone.js'); require('zone.js/dist/async-test.js'); require('zone.js/dist/fake-async-test.js'); var jrunner = new JasmineRunner(); var toolsDir = process.cwd() + '/dist/tools'; function toolsDirRequire(moduleId) { return require(path.join(toolsDir, moduleId)); } // Tun on full stack traces in errors to help debugging Error['stackTraceLimit'] = Infinity; jrunner.jasmine.DEFAULT_TIMEOUT_INTERVAL = 100; // Support passing multiple globs var globsIndex = process.argv.indexOf('--'); var args; if (globsIndex < 0) { args = [process.argv[2]]; } else { args = process.argv.slice(globsIndex + 1); } var specFiles = args.map(function(globstr) { return glob.sync(globstr, {cwd: toolsDir}); }) .reduce(function(specFiles, paths) { return specFiles.concat(paths); }, []); jasmine.DEFAULT_TIMEOUT_INTERVAL = 100; jrunner.configureDefaultReporter({showColors: process.argv.indexOf('--no-color') === -1}); jrunner.onComplete(function(passed) { process.exit(passed ? 0 : 1); }); jrunner.projectBaseDir = path.resolve(__dirname, '../../'); jrunner.specDir = ''; require('zone.js/dist/jasmine-patch.js'); specFiles.forEach((file) => { toolsDirRequire(file); }); jrunner.execute();