[Console] Fix and skip flaky tests (#193508)

This commit is contained in:
Ignacio Rivas 2024-09-20 11:45:55 +02:00 committed by GitHub
parent d22ff1fbbe
commit 5ea37fb470
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 3 additions and 12 deletions

View file

@ -34,9 +34,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
}
// Failing: See https://github.com/elastic/kibana/issues/191808
describe.skip('console autocomplete feature', function describeIndexTests() {
this.tags('includeFirefox');
describe('console autocomplete feature', function describeIndexTests() {
before(async () => {
log.debug('navigateTo console');
await PageObjects.common.navigateToApp('console');

View file

@ -20,7 +20,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const security = getService('security');
describe('console app', function describeIndexTests() {
this.tags('includeFirefox');
before(async () => {
log.debug('navigateTo console');
await PageObjects.common.navigateToApp('console');

View file

@ -18,9 +18,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const browser = getService('browser');
const PageObjects = getPageObjects(['common', 'console', 'header']);
// Failing: See https://github.com/elastic/kibana/issues/193309
describe.skip('misc console behavior', function testMiscConsoleBehavior() {
this.tags('includeFirefox');
describe('misc console behavior', function testMiscConsoleBehavior() {
before(async () => {
await browser.setWindowSize(1200, 800);
await PageObjects.common.navigateToApp('console');

View file

@ -17,7 +17,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
describe('console onboarding tour', function describeIndexTests() {
this.tags('includeFirefox');
before(async () => {
log.debug('navigateTo console');
await PageObjects.common.navigateToApp('console');

View file

@ -15,10 +15,7 @@ export default ({ getService, getPageObjects }: FtrProviderContext) => {
const log = getService('log');
const PageObjects = getPageObjects(['common', 'console', 'header']);
// Failing: See https://github.com/elastic/kibana/issues/157776
describe.skip('Console variables', function testConsoleVariables() {
this.tags('includeFirefox');
describe('Console variables', function testConsoleVariables() {
before(async () => {
log.debug('navigateTo console');
await PageObjects.common.navigateToApp('console');