Skip to content

Commit

Permalink
unskip newsfeed tests (#66562)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored May 15, 2020
1 parent 7c8eea1 commit cdb59c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions test/functional/apps/home/_newsfeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ export default function({ getService, getPageObjects }: FtrProviderContext) {
}
});

// TODO currently fails because styles are not correctly applied in the new platform
it.skip('clicking on newsfeed icon should close opened newsfeed', async () => {
it('clicking on newsfeed icon should close opened newsfeed', async () => {
await globalNav.clickNewsfeed();
const isOpen = await PageObjects.newsfeed.openNewsfeedPanel();
expect(isOpen).to.be(false);
Expand Down
3 changes: 1 addition & 2 deletions test/ui_capabilities/newsfeed_err/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ export default function uiCapabilitiesTests({ getService, getPageObjects }: FtrP
expect(objects).to.eql([]);
});

// TODO currently fails because styles are not correctly applied in the new platform
it.skip('clicking on newsfeed icon should close opened newsfeed', async () => {
it('clicking on newsfeed icon should close opened newsfeed', async () => {
await globalNav.clickNewsfeed();
const isOpen = await PageObjects.newsfeed.openNewsfeedPanel();
expect(isOpen).to.be(false);
Expand Down

0 comments on commit cdb59c7

Please sign in to comment.