The CLI app is now checked in, rather than generated dynamically with `ng new`. This loses some assertion power, but gains hermeticity. It also checks in lock files for all integration tests, avoiding floating version numbers. We'll need another place to integration test between changes in the various repositories - but the angular/angular PR-blocking status is not the right place to do this. PR Close #21555
		
			
				
	
	
		
			12 lines
		
	
	
		
			208 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			208 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { browser, by, element } from 'protractor';
 | |
| 
 | |
| export class AppPage {
 | |
|   navigateTo() {
 | |
|     return browser.get('/');
 | |
|   }
 | |
| 
 | |
|   getParagraphText() {
 | |
|     return element(by.css('app-root h1')).getText();
 | |
|   }
 | |
| }
 |