You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							672 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							672 B
						
					
					
				
								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', async () => {
							 | 
						|
								    await page.navigateTo();
							 | 
						|
								    expect(await page.getTitleText()).toEqual('<%= relatedAppName %> app is running!');
							 | 
						|
								  });
							 | 
						|
								
							 | 
						|
								  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));
							 | 
						|
								  });
							 | 
						|
								});
							 |