mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Unskip flaky Enter Space test (#131835)
* Unskip flaky test * re-include firefox * Flakyness attempt * lint
This commit is contained in:
parent
2e0cabc910
commit
7df8edf9b3
2 changed files with 6 additions and 6 deletions
|
@ -14,11 +14,8 @@ export default function enterSpaceFunctonalTests({
|
|||
const esArchiver = getService('esArchiver');
|
||||
const PageObjects = getPageObjects(['security', 'spaceSelector']);
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/99879
|
||||
describe.skip('Enter Space', function () {
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/100570
|
||||
// These tests fail very intermittently in Firefox. Skip Firefox testing until resolved.
|
||||
// this.tags('includeFirefox');
|
||||
describe('Enter Space', function () {
|
||||
this.tags('includeFirefox');
|
||||
before(async () => {
|
||||
await esArchiver.load('x-pack/test/functional/es_archives/spaces/enter_space');
|
||||
await PageObjects.security.forceLogout();
|
||||
|
|
|
@ -48,7 +48,10 @@ export class SpaceSelectorPageObject extends FtrService {
|
|||
|
||||
async openSpacesNav() {
|
||||
this.log.debug('openSpacesNav()');
|
||||
return await this.testSubjects.click('spacesNavSelector');
|
||||
return await this.retry.try(async () => {
|
||||
await this.testSubjects.click('spacesNavSelector');
|
||||
await this.find.byCssSelector('#headerSpacesMenuContent');
|
||||
});
|
||||
}
|
||||
|
||||
async clickManageSpaces() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue