| 
									
										
										
										
											2016-10-04 20:39:20 -07: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-08-30 09:29:39 -07:00
										 |  |  | // Make sure that the command line is read as the first thing
 | 
					
						
							|  |  |  | // as this could exit node if the help script should be printed.
 | 
					
						
							|  |  |  | require('./dist/all/e2e_util/e2e_util').readCommandLine(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | var BROWSER_OPTIONS = { | 
					
						
							|  |  |  |   LocalChrome: { | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |     'browserName': 'chrome', | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |   }, | 
					
						
							|  |  |  |   ChromeOnTravis: { | 
					
						
							|  |  |  |     browserName: 'chrome', | 
					
						
							|  |  |  |     chromeOptions: { | 
					
						
							|  |  |  |       'args': ['--no-sandbox'], | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |       'binary': process.env.CHROME_BIN, | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exports.config = { | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |   onPrepare: function() { beforeEach(function() { browser.ignoreSynchronization = false; }); }, | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |   allScriptsTimeout: 11000, | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |   specs: ['dist/all/**/e2e_test/**/*_spec.js'], | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |   exclude: [ | 
					
						
							| 
									
										
										
										
											2016-09-07 16:04:33 -07:00
										 |  |  |     'dist/all/@angular/examples/**', | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |     '**/key_events/**',  // can't tell why this is failing
 | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |     '**/sourcemap/**'    // fails only on travis
 | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |   ], | 
					
						
							|  |  |  |   capabilities: process.env.TRAVIS ? BROWSER_OPTIONS.ChromeOnTravis : BROWSER_OPTIONS.LocalChrome, | 
					
						
							|  |  |  |   directConnect: true, | 
					
						
							| 
									
										
										
										
											2016-05-24 12:33:14 -07:00
										 |  |  |   baseUrl: 'http://localhost:8000/', | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  |   framework: 'jasmine2', | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |   jasmineNodeOpts: | 
					
						
							|  |  |  |       {showColors: true, defaultTimeoutInterval: 60000, print: function(msg) { console.log(msg) }}, | 
					
						
							|  |  |  |   useAllAngular2AppRoots: true, | 
					
						
							| 
									
										
										
										
											2016-05-01 22:54:19 -07:00
										 |  |  | }; |