Skip to content

Commit

Permalink
reverting tests changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jul 13, 2020
1 parent 5367a3b commit e93d121
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {

it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
expect(navLinks).to.contain('Visualize');
expect(navLinks).to.eql(['Visualize', 'Stack Management']);
});

it(`landing page shows "Create new Visualization" button`, async () => {
Expand Down Expand Up @@ -201,7 +201,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {

it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
expect(navLinks).to.contain('Visualize');
expect(navLinks).to.eql(['Visualize', 'Stack Management']);
});

it(`landing page shows "Create new Visualization" button`, async () => {
Expand Down Expand Up @@ -316,7 +316,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {

it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
expect(navLinks).to.contain('Visualize');
expect(navLinks).to.eql(['Visualize', 'Stack Management']);
});

it(`landing page shows "Create new Visualization" button`, async () => {
Expand Down

0 comments on commit e93d121

Please sign in to comment.