21 lines
525 B
TypeScript
21 lines
525 B
TypeScript
|
import { AppPage } from './app.po';
|
||
|
import { browser, logging } from 'protractor';
|
||
|
|
||
|
describe('workspace-project App', () => {
|
||
|
let page: AppPage;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
page = new AppPage();
|
||
|
});
|
||
|
|
||
|
// Add your e2e tests here
|
||
|
|
||
|
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));
|
||
|
});
|
||
|
});
|