| 
									
										
										
										
											2016-10-23 22:37:15 +02:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  | /* tslint:disable:no-var-keyword */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var glob = require('glob'); | 
					
						
							| 
									
										
										
										
											2016-08-19 12:10:53 -07:00
										 |  |  | require('zone.js/dist/zone-node.js'); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | var JasmineRunner = require('jasmine'); | 
					
						
							|  |  |  | var path = require('path'); | 
					
						
							| 
									
										
										
										
											2016-06-24 16:52:41 -07:00
										 |  |  | require('source-map-support').install(); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | require('zone.js/dist/long-stack-trace-zone.js'); | 
					
						
							| 
									
										
										
										
											2017-04-27 11:44:14 -07:00
										 |  |  | require('zone.js/dist/task-tracking.js'); | 
					
						
							| 
									
										
										
										
											2016-08-19 14:35:26 -07:00
										 |  |  | require('zone.js/dist/proxy.js'); | 
					
						
							| 
									
										
										
										
											2016-08-19 12:10:53 -07:00
										 |  |  | require('zone.js/dist/sync-test.js'); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | require('zone.js/dist/async-test.js'); | 
					
						
							|  |  |  | require('zone.js/dist/fake-async-test.js'); | 
					
						
							|  |  |  | require('reflect-metadata/Reflect'); | 
					
						
							|  |  |  | var jrunner = new JasmineRunner(); | 
					
						
							| 
									
										
										
										
											2016-08-19 12:10:53 -07:00
										 |  |  | (global as any)['jasmine'] = jrunner.jasmine; | 
					
						
							|  |  |  | require('zone.js/dist/jasmine-patch.js'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | var distAll: string = process.cwd() + '/dist/all'; | 
					
						
							|  |  |  | function distAllRequire(moduleId: string) { | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  |   return require(path.join(distAll, moduleId)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Tun on full stack traces in errors to help debugging
 | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | (<any>Error)['stackTraceLimit'] = Infinity; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | jrunner.jasmine.DEFAULT_TIMEOUT_INTERVAL = 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Support passing multiple globs
 | 
					
						
							|  |  |  | var globsIndex = process.argv.indexOf('--'); | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | var args: string[]; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | if (globsIndex < 0) { | 
					
						
							|  |  |  |   args = [process.argv[2]]; | 
					
						
							|  |  |  | } else { | 
					
						
							|  |  |  |   args = process.argv.slice(globsIndex + 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | (global as any).isNode = true; | 
					
						
							|  |  |  | (global as any).isBrowser = false; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | var specFiles: any = | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |     args.map(function(globstr: string): | 
					
						
							|  |  |  |                  string[] { | 
					
						
							|  |  |  |                    return glob.sync(globstr, { | 
					
						
							|  |  |  |                      cwd: distAll, | 
					
						
							|  |  |  |                      ignore: [ | 
					
						
							|  |  |  |                        // the following code and tests are not compatible with CJS/node environment
 | 
					
						
							| 
									
										
										
										
											2017-12-16 11:35:47 -08:00
										 |  |  |                        '@angular/_testing_init/**', | 
					
						
							| 
									
										
										
										
											2016-09-09 16:54:26 -07:00
										 |  |  |                        '@angular/examples/**', | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |                        '@angular/platform-browser/**', | 
					
						
							| 
									
										
										
										
											2016-06-10 10:21:53 -07:00
										 |  |  |                        '@angular/platform-browser-dynamic/**', | 
					
						
							| 
									
										
										
										
											2018-02-02 15:25:33 -08:00
										 |  |  |                        '@angular/core/test/bundling/**', | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |                        '@angular/core/test/zone/**', | 
					
						
							| 
									
										
										
										
											2017-12-01 14:23:03 -08:00
										 |  |  |                        '@angular/core/test/render3/**', | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |                        '@angular/core/test/fake_async_spec.*', | 
					
						
							| 
									
										
										
										
											2016-06-14 18:23:40 -07:00
										 |  |  |                        '@angular/forms/test/**', | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |                        '@angular/router/test/route_config/route_config_spec.*', | 
					
						
							|  |  |  |                        '@angular/router/test/integration/bootstrap_spec.*', | 
					
						
							|  |  |  |                        '@angular/integration_test/symbol_inspector/**', | 
					
						
							|  |  |  |                        '@angular/upgrade/**', | 
					
						
							| 
									
										
										
										
											2018-02-28 09:45:11 -08:00
										 |  |  |                        '@angular/elements/**', | 
					
						
							| 
									
										
										
										
											2016-09-08 16:48:07 -07:00
										 |  |  |                        '@angular/**/e2e_test/**', | 
					
						
							| 
									
										
										
										
											2016-05-26 10:45:37 -07:00
										 |  |  |                        'angular1_router/**', | 
					
						
							|  |  |  |                        'payload_tests/**', | 
					
						
							|  |  |  |                      ] | 
					
						
							|  |  |  |                    }); | 
					
						
							|  |  |  |                  }) | 
					
						
							| 
									
										
										
										
											2017-03-01 11:19:22 -08:00
										 |  |  |         // Run relevant subset of browser tests for features reused on the server side.
 | 
					
						
							|  |  |  |         // Make sure the security spec works on the server side!
 | 
					
						
							| 
									
										
										
										
											2016-05-20 11:41:42 -07:00
										 |  |  |         .concat(glob.sync('@angular/platform-browser/test/security/**/*_spec.js', {cwd: distAll})) | 
					
						
							| 
									
										
										
										
											2017-03-01 11:19:22 -08:00
										 |  |  |         .concat(['/@angular/platform-browser/test/browser/meta_spec.js']) | 
					
						
							|  |  |  |         .concat(['/@angular/platform-browser/test/browser/title_spec.js']) | 
					
						
							| 
									
										
										
										
											2017-09-11 00:18:55 -07:00
										 |  |  |         .concat(['/@angular/platform-browser/test/browser/transfer_state_spec.js']) | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  |         .reduce((specFiles: string[], paths: string[]) => specFiles.concat(paths), <string[]>[]); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | jasmine.DEFAULT_TIMEOUT_INTERVAL = 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | jrunner.configureDefaultReporter({showColors: process.argv.indexOf('--no-color') === -1}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | jrunner.onComplete(function(passed: boolean) { process.exit(passed ? 0 : 1); }); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | jrunner.projectBaseDir = path.resolve(__dirname, '../../'); | 
					
						
							|  |  |  | jrunner.specDir = ''; | 
					
						
							|  |  |  | require('./test-cjs-main.js'); | 
					
						
							| 
									
										
										
										
											2017-08-08 02:17:40 -07:00
										 |  |  | distAllRequire('@angular/platform-server/src/domino_adapter.js').DominoAdapter.makeCurrent(); | 
					
						
							| 
									
										
										
										
											2016-01-22 10:51:16 -08:00
										 |  |  | specFiles.forEach((file: string) => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   const r = distAllRequire(file); | 
					
						
							|  |  |  |   if (r.main) { | 
					
						
							|  |  |  |     r.main(); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | jrunner.execute(); |