Skip to content

Commit

Permalink
reskip the next batch of unskipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyarm committed Sep 2, 2021
1 parent ab85ad7 commit 6cf6493
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/functional/apps/dashboard/dashboard_unsaved_state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
let unsavedPanelCount = 0;

// FLAKY: https://github.com/elastic/kibana/issues/91191
describe('dashboard unsaved panels', () => {
describe.skip('dashboard unsaved panels', () => {
before(async () => {
await esArchiver.load('test/functional/fixtures/es_archiver/dashboard/current/kibana');
await kibanaServer.uiSettings.replace({
Expand Down
4 changes: 2 additions & 2 deletions test/functional/apps/discover/_data_grid_doc_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
});

describe('add and remove columns', function () {
describe.skip('add and remove columns', function () {
const extraColumns = ['phpmemory', 'ip'];

afterEach(async function () {
Expand All @@ -142,7 +142,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
}
});

it('should add more columns to the table', async function () {
it.skip('should add more columns to the table', async function () {
for (const column of extraColumns) {
await PageObjects.discover.clearFieldSearchInput();
await PageObjects.discover.findFieldByName(column);
Expand Down
2 changes: 1 addition & 1 deletion test/functional/apps/visualize/_metric_chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['visualize', 'visEditor', 'visChart', 'timePicker']);

// FLAKY: https://github.com/elastic/kibana/issues/106121
describe('metric chart', function () {
describe.skip('metric chart', function () {
before(async function () {
await PageObjects.visualize.initTests();
log.debug('navigateToApp visualize');
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function upgradeAssistantFunctionalTests({
const testSubjects = getService('testSubjects');

// Updated for the hiding of the UA UI.
describe('Upgrade Checkup', function () {
describe.skip('Upgrade Checkup', function () {
this.tags('skipFirefox');

before(async () => {
Expand Down

0 comments on commit 6cf6493

Please sign in to comment.