Skip to content

Commit

Permalink
Merge pull request #6790 from ebondare/fix-ceph-suite-timeout
Browse files Browse the repository at this point in the history
Bug 1884150: Fix timeout issue in ceph test suite
  • Loading branch information
openshift-merge-robot committed Oct 1, 2020
2 parents 85330bd + b1864a0 commit a8318a3
Showing 1 changed file with 1 addition and 3 deletions.
Expand Up @@ -28,9 +28,7 @@ describe('Check health data on main OCP dashboard ', () => {
await browser.sleep(2 * SECOND);
expect(mainHealtYellowSvg.isPresent()).toBe(true);
noOutChange('unset');
jasmine.DEFAULT_TIMEOUT_INTERVAL = 300;
await browser.wait(until.presenceOf(mainHealtGreenSvg));
jasmine.DEFAULT_TIMEOUT_INTERVAL = 120;
await browser.wait(until.presenceOf(mainHealtGreenSvg), 60 * SECOND);
});

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

0 comments on commit a8318a3

Please sign in to comment.