Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skipping failing tests #26877

Merged
merged 1 commit into from
Dec 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');

describe('overview', () => {
describe.skip('overview', () => {
describe('with green platinum cluster', () => {
const archive = 'monitoring/singlecluster-green-platinum';
const timeRange = {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/reporting/api/bwc_existing_indexes.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ({ getService }) {
let expectedCompletedReportCount;
let cleanupIndexAlias;

describe('existing 6_2 index', () => {
describe.skip('existing 6_2 index', () => {
before('load data and add index alias', async () => {
await reportingAPI.deleteAllReportingIndexes();
await esArchiver.load('bwc/6_2');
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/reporting/api/bwc_generation_urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function ({ getService }) {
}).timeout(500000);
});

describe('6_2', () => {
describe.skip('6_2', () => {
before(async () => {
await reportingAPI.deleteAllReportingIndexes();
});
Expand Down
2 changes: 1 addition & 1 deletion x-pack/test/reporting/api/usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default function ({ getService }) {
});
});

describe('usage updated when new jobs are posted', async () => {
describe.skip('usage updated when new jobs are posted', async () => {
it('post jobs', async () => {
const reportPaths = [];
reportPaths.push(await reportingAPI.postJob(GenerationUrls.CSV_DISCOVER_KUERY_AND_FILTER_6_3));
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/reporting/functional/reporting.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ export default function ({ getService, getPageObjects }) {
await expectEnabledGenerateReportButton();
});

it('generates a report with data', async () => {
it.skip('generates a report with data', async () => {
await PageObjects.reporting.setTimepickerInDataRange();
await PageObjects.reporting.openCsvReportingPanel();
await expectReportCanBeCreated();
});

it('generates a report with no data', async () => {
it.skip('generates a report with no data', async () => {
await PageObjects.reporting.setTimepickerInNoDataRange();
await PageObjects.reporting.openCsvReportingPanel();
await expectReportCanBeCreated();
Expand Down