| 
									
										
										
										
											2017-05-03 19:31:02 +02:00
										 |  |  | 'use strict'; // necessary for es6 output in node
 | 
					
						
							| 
									
										
										
										
											2017-01-31 22:31:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import { browser, element, by } from 'protractor'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('QuickStart E2E Tests', function () { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let expectedMsg = 'Hello from Angular App with Webpack'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   beforeEach(function () { | 
					
						
							|  |  |  |     browser.get(''); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it(`should display: ${expectedMsg}`, function () { | 
					
						
							|  |  |  |     expect(element(by.css('h1')).getText()).toEqual(expectedMsg); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should display an image', function () { | 
					
						
							|  |  |  |     expect(element(by.css('img')).isPresent()).toBe(true); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }); |