| 
									
										
										
										
											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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-08 12:41:24 +01:00
										 |  |  | const CHROME_OPTIONS = { | 
					
						
							| 
									
										
										
										
											2018-10-25 18:10:31 -07:00
										 |  |  |   'args': ['--js-flags=--expose-gc', '--no-sandbox', '--headless', '--disable-dev-shm-usage'], | 
					
						
							| 
									
										
										
										
											2016-08-30 09:29:39 -07:00
										 |  |  |   'perfLoggingPrefs': { | 
					
						
							| 
									
										
										
										
											2018-10-19 14:28:47 -07:00
										 |  |  |     'traceCategories': | 
					
						
							|  |  |  |         'v8,blink.console,devtools.timeline,disabled-by-default-devtools.timeline,blink.user_timing' | 
					
						
							| 
									
										
										
										
											2016-08-30 09:29:39 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-11 21:09:37 +01:00
										 |  |  | exports.config = { | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |   onPrepare: function() { | 
					
						
							|  |  |  |     beforeEach(function() { | 
					
						
							|  |  |  |       browser.ignoreSynchronization = false; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }, | 
					
						
							| 
									
										
										
										
											2019-01-08 12:41:24 +01:00
										 |  |  |   restartBrowserBetweenTests: true, | 
					
						
							|  |  |  |   allScriptsTimeout: 11000, | 
					
						
							|  |  |  |   capabilities: { | 
					
						
							| 
									
										
										
										
											2016-08-30 09:29:39 -07:00
										 |  |  |     'browserName': 'chrome', | 
					
						
							|  |  |  |     chromeOptions: CHROME_OPTIONS, | 
					
						
							|  |  |  |     loggingPrefs: { | 
					
						
							|  |  |  |       performance: 'ALL', | 
					
						
							| 
									
										
										
										
											2016-10-04 20:39:20 -07:00
										 |  |  |       browser: 'ALL', | 
					
						
							| 
									
										
										
										
											2016-08-30 09:29:39 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  |   directConnect: true, | 
					
						
							|  |  |  |   framework: 'jasmine2', | 
					
						
							|  |  |  |   jasmineNodeOpts: { | 
					
						
							|  |  |  |     showColors: true, | 
					
						
							| 
									
										
										
										
											2019-05-14 10:03:21 +02:00
										 |  |  |     defaultTimeoutInterval: 90000, | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |     print: function(msg) { | 
					
						
							|  |  |  |       console.log(msg); | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2016-08-30 09:29:39 -07:00
										 |  |  |   }, | 
					
						
							|  |  |  |   useAllAngular2AppRoots: true | 
					
						
							|  |  |  | }; |