Skip to content

Commit

Permalink
reskipping unskipped tests after ci failures
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyarm committed Aug 26, 2021
1 parent 8b5e5b4 commit ab85ad7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/functional/apps/dashboard/dashboard_filtering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'dashboard', 'header', 'visualize', 'timePicker']);

// Failing: See https://github.com/elastic/kibana/issues/92522
describe('dashboard filtering', function () {
describe.skip('dashboard filtering', function () {
this.tags('includeFirefox');

const populateDashboard = async () => {
Expand Down
2 changes: 1 addition & 1 deletion test/functional/apps/discover/_data_grid_doc_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
expect(popoverJson).to.be(flyoutJson);
});

describe('expand a document row', function () {
describe.skip('expand a document row', function () {
const rowToInspect = 1;

it('should expand the detail row when the toggle arrow is clicked', async function () {
Expand Down
4 changes: 2 additions & 2 deletions test/functional/apps/management/_scripted_fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function ({ getService, getPageObjects }) {
'timePicker',
]);

describe('scripted fields', function () {
describe.skip('scripted fields', function () {
this.tags(['skipFirefox']);

before(async function () {
Expand Down Expand Up @@ -154,7 +154,7 @@ export default function ({ getService, getPageObjects }) {
});

//add a test to sort numeric scripted field
it('should sort scripted field value in Discover', async function () {
it.skip('should sort scripted field value in Discover', async function () {
await testSubjects.click(`docTableHeaderFieldSort_${scriptedPainlessFieldName}`);
// after the first click on the scripted field, it becomes secondary sort after time.
// click on the timestamp twice to make it be the secondary sort key.
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/apps/dashboard/sync_colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
}

// FLAKY: https://github.com/elastic/kibana/issues/97403
describe('sync colors', function () {
describe.skip('sync colors', function () {
before(async function () {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional');
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/lens/basic');
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/functional/apps/maps/layer_errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import expect from '@kbn/expect';
export default function ({ getPageObjects }) {
const PageObjects = getPageObjects(['maps', 'header']);

describe('layer errors', () => {
describe.skip('layer errors', () => {
before(async () => {
await PageObjects.maps.loadSavedMap('layer with errors');
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function ({ getService, getPageObjects }) {
});

// Revisit once https://github.com/elastic/eui/issues/1322 is resolved
it('should show indices table with correct rows after sorting by Search Rate Desc', async () => {
it.skip('should show indices table with correct rows after sorting by Search Rate Desc', async () => {
await indicesList.clickSearchCol();
await indicesList.clickSearchCol();

Expand Down

0 comments on commit ab85ad7

Please sign in to comment.