Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions test/functional/apps/home/_newsfeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,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