Skip to content

Commit

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

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

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

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('discover tab with new fields API', function describeIndexTests() {
describe('discover tab with new fields API', function describeIndexTests() {
this.tags('includeFirefox');
before(async function () {
await kibanaServer.savedObjects.clean({ types: ['search', 'index-pattern'] });
Expand Down
3 changes: 1 addition & 2 deletions test/functional/apps/discover/_large_string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const security = getService('security');
const PageObjects = getPageObjects(['common', 'home', 'settings', 'discover']);

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('test large strings', function () {
describe('test large strings', function () {
before(async function () {
await security.testUser.setRoles(['kibana_admin', 'kibana_large_strings']);

Expand Down
3 changes: 2 additions & 1 deletion test/functional/apps/discover/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default function ({ getService, loadTestFile }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const browser = getService('browser');

describe('discover app', function () {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/104466
describe.skip('discover app', function () {
this.tags('ciGroup6');

before(function () {
Expand Down

0 comments on commit d776c09

Please sign in to comment.