Skip to content

Commit

Permalink
Merge branch 'main' into run-kibana-quality-gate-suites
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic authored Sep 5, 2023
2 parents 739e338 + ccfb713 commit 8aeb4b8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/discover/group1/_discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
defaultIndex: 'logstash-*',
};

describe('discover test', function describeIndexTests() {
// FLAKY: https://github.com/elastic/kibana/issues/146223
describe.skip('discover test', function describeIndexTests() {
before(async function () {
log.debug('load kibana index with default index pattern');
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const dashboardPanelActions = getService('dashboardPanelActions');
const kibanaServer = getService('kibanaServer');

describe('dashboard lens by value', function () {
// FLAKY: https://github.com/elastic/kibana/issues/165461
describe.skip('dashboard lens by value', function () {
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional');
await kibanaServer.importExport.load(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const comboBox = getService('comboBox');
const toasts = getService('toasts');

describe('Search example', () => {
// Failing: See https://github.com/elastic/kibana/issues/165730
describe.skip('Search example', () => {
describe('with bfetch', () => {
testSearchExample();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const security = getService('security');
const retry = getService('retry');

describe('Index Templates', function () {
// FLAKY: https://github.com/elastic/kibana/issues/165746
describe.skip('Index Templates', function () {
before(async () => {
await security.testUser.setRoles(['index_management_user']);
await pageObjects.common.navigateToApp('indexManagement');
Expand Down

0 comments on commit 8aeb4b8

Please sign in to comment.