| 
									
										
										
										
											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-07-13 10:10:02 -07:00
										 |  |  | import {verifyNoBrowserErrors} from 'e2e_util/e2e_util'; | 
					
						
							| 
									
										
										
										
											2016-11-10 18:13:11 -08:00
										 |  |  | import {browser, by, element} from 'protractor'; | 
					
						
							| 
									
										
										
										
											2015-12-06 14:21:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | describe('SVG', function() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |   const URL = 'all/playground/src/svg/index.html'; | 
					
						
							| 
									
										
										
										
											2015-12-06 14:21:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   afterEach(verifyNoBrowserErrors); | 
					
						
							|  |  |  |   beforeEach(() => { browser.get(URL); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should display SVG component contents', function() { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |     const svgText = element.all(by.css('g text')).get(0); | 
					
						
							| 
									
										
										
										
											2015-12-06 14:21:34 +02:00
										 |  |  |     expect(svgText.getText()).toEqual('Hello'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }); |