Skip to content

Commit

Permalink
[Console] Fix and skip flaky tests (#193508)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba authored Sep 20, 2024
1 parent d22ff1f commit 5ea37fb
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 12 deletions.
4 changes: 1 addition & 3 deletions test/functional/apps/console/_autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
1 change: 0 additions & 1 deletion test/functional/apps/console/_console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
4 changes: 1 addition & 3 deletions test/functional/apps/console/_misc_console_behavior.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
1 change: 0 additions & 1 deletion test/functional/apps/console/_onboarding_tour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
5 changes: 1 addition & 4 deletions test/functional/apps/console/_variables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 5ea37fb

Please sign in to comment.