Skip to content

Commit

Permalink
skip suites failing es promotion (#104466)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Jul 9, 2021
1 parent f7b87a5 commit ce48b73
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/discover/_data_grid_field_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const defaultSettings = { defaultIndex: 'logstash-*', 'doc_table:legacy': false };
const dataGrid = getService('dataGrid');

describe('discover data grid field data tests', function describeIndexTests() {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('discover data grid field data tests', function describeIndexTests() {
this.tags('includeFirefox');
before(async function () {
await kibanaServer.savedObjects.clean({ types: ['search', 'index-pattern'] });
Expand Down
7 changes: 4 additions & 3 deletions test/functional/apps/discover/_field_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'header', 'discover', 'visualize', 'timePicker']);
const find = getService('find');

describe('discover tab', function describeIndexTests() {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('discover tab', function describeIndexTests() {
this.tags('includeFirefox');
before(async function () {
await kibanaServer.savedObjects.clean({ types: ['search', 'index-pattern'] });
Expand All @@ -33,8 +34,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.timePicker.setDefaultAbsoluteRangeViaUiSettings();
await PageObjects.common.navigateToApp('discover');
});
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('field data', function () {

describe('field data', function () {
it('search php should show the correct hit count', async function () {
const expectedHitCount = '445';
await retry.try(async function () {
Expand Down
3 changes: 2 additions & 1 deletion test/functional/apps/discover/_field_data_with_fields_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'header', 'discover', 'visualize', 'timePicker']);
const find = getService('find');

describe('discover tab with new fields API', function describeIndexTests() {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('discover tab with new fields API', function describeIndexTests() {
this.tags('includeFirefox');
before(async function () {
await kibanaServer.savedObjects.clean({ types: ['search', 'index-pattern'] });
Expand Down

0 comments on commit ce48b73

Please sign in to comment.