mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Moving angular-compiler-options docs inline code to external file of tsconfig.json and tsconfig.app.json. closes #43336 PR Close #43545
20 lines
525 B
TypeScript
20 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));
|
|
});
|
|
});
|