29 lines
		
	
	
		
			670 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			670 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { browser, logging } from 'protractor';
 | |
| import { AppPage } from './app.po';
 | |
| 
 | |
| describe('workspace-project App', () => {
 | |
|   let page: AppPage;
 | |
| 
 | |
|   beforeEach(() => {
 | |
|     page = new AppPage();
 | |
|   });
 | |
| 
 | |
|   it('should display welcome message', () => {
 | |
|     page.navigateTo();
 | |
|     expect(page.getTitleText()).toEqual('Welcome to ng8!');
 | |
|   });
 | |
| 
 | |
|   afterEach(async () => {
 | |
|     // Assert that there are no errors emitted from the browser
 | |
|     const logs = await browser
 | |
|       .manage()
 | |
|       .logs()
 | |
|       .get(logging.Type.BROWSER);
 | |
|     expect(logs).not.toContain(
 | |
|       jasmine.objectContaining({
 | |
|         level: logging.Level.SEVERE,
 | |
|       } as logging.Entry),
 | |
|     );
 | |
|   });
 | |
| });
 |