16 lines
		
	
	
		
			343 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			343 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /// <reference path='../_protractor/e2e.d.ts' />
 | |
| 'use strict';
 | |
| describe('QuickStart E2E Tests', function () {
 | |
| 
 | |
|   let expectedMsg = 'My First Angular 2 App';
 | |
| 
 | |
|   beforeEach(function () {
 | |
|     browser.get('');
 | |
|   });
 | |
| 
 | |
|   it(`should display: ${expectedMsg}`, function () {
 | |
|     expect(element(by.css('h1')).getText()).toEqual(expectedMsg);
 | |
|   });
 | |
| 
 | |
| });
 |