Skip to content
Snippets Groups Projects
Commit 1903ad04 authored by Art Lowel's avatar Art Lowel
Browse files

remove debug output

parent cab97121
Branches
Tags
No related merge requests found
import { by, element } from 'protractor';
import { ProtractorPage } from './app.po';
describe('protractor App', () => {
......@@ -15,7 +14,6 @@ describe('protractor App', () => {
it('should contain a news section', () => {
page.navigateTo()
.then(() => element(by.css('.main-content')).getAttribute('innerHTML').then((v) => process.stdout.write(v)));
expect<any>(page.getHomePageNewsText()).toBeDefined();
.then(() => expect<any>(page.getHomePageNewsText()).toBeDefined());
});
});
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment