mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Console] Fix and skip flaky tests (#193508)
This commit is contained in:
parent
d22ff1fbbe
commit
5ea37fb470
5 changed files with 3 additions and 12 deletions
|
@ -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');
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue