| 
									
										
										
										
											2016-06-23 09:47:54 -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-05 09:56:53 -07:00
										 |  |  | import {verifyNoBrowserErrors} from 'e2e_util/e2e_util'; | 
					
						
							| 
									
										
										
										
											2016-11-10 18:13:11 -08:00
										 |  |  | import {browser, by, element} from 'protractor'; | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 21:14:35 -07:00
										 |  |  | // TODO(i): reenable once we are using a version of protractor containing the
 | 
					
						
							|  |  |  | // change in https://github.com/angular/protractor/pull/3403
 | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  | xdescribe('ngUpgrade', function() { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   const URL = 'all/playground/src/upgrade/index.html'; | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 21:14:35 -07:00
										 |  |  |   beforeEach(function() { | 
					
						
							|  |  |  |     browser.rootEl = 'body'; | 
					
						
							|  |  |  |     (<any>browser).ng12Hybrid = true; | 
					
						
							|  |  |  |     browser.get(URL); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-25 21:14:35 -07:00
										 |  |  |   afterEach(function() { | 
					
						
							|  |  |  |     (<any>browser).useAllAngular2AppRoots(); | 
					
						
							|  |  |  |     (<any>browser).ng12Hybrid = false; | 
					
						
							|  |  |  |     verifyNoBrowserErrors(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-26 22:30:42 -08:00
										 |  |  |   it('should bootstrap AngularJS and Angular apps together', function() { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const ng1NameInput = element(by.css('input[ng-model="name"]')); | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  |     expect(ng1NameInput.getAttribute('value')).toEqual('World'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const userSpan = element(by.css('user span')); | 
					
						
							| 
									
										
										
										
											2016-07-25 21:14:35 -07:00
										 |  |  |     expect(userSpan.getText()).toMatch(/World$/); | 
					
						
							| 
									
										
										
										
											2016-06-16 09:56:14 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | }); |