mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 07:01:38 +00:00
24 lines
698 B
TypeScript
24 lines
698 B
TypeScript
import { AppPage } from './app.po';
|
|
import { browser, logging } from 'protractor';
|
|
|
|
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('Welcome to Fuse!');
|
|
});
|
|
|
|
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));
|
|
});
|
|
});
|