Skip to content

Commit

Permalink
Merge pull request #6924 from ebondare/dashboard-test-timeout-increase
Browse files Browse the repository at this point in the history
Increase timeout in dashboard test for better stability
  • Loading branch information
openshift-merge-robot committed Oct 14, 2020
2 parents 7c8a8fb + 70fede2 commit b9e8fc1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,11 +24,11 @@ describe('Check health data on main OCP dashboard ', () => {
it('Check main dashboard health icon is yellow and cluster health is degraded.', async () => {
await browser.wait(until.presenceOf(mainHealtGreenSvg));
noOutChange('set');
await browser.wait(until.not(until.presenceOf(mainHealtGreenSvg)));
await browser.wait(until.not(until.presenceOf(mainHealtGreenSvg)), 60 * SECOND);
await browser.sleep(2 * SECOND);
expect(mainHealtYellowSvg.isPresent()).toBe(true);
noOutChange('unset');
await browser.wait(until.presenceOf(mainHealtGreenSvg), 60 * SECOND);
await browser.wait(until.presenceOf(mainHealtGreenSvg), 120 * SECOND);
});

xit('Check main dashboard health icon is red and cluster is NA', async () => {
Expand Down

0 comments on commit b9e8fc1

Please sign in to comment.