Skip to content

Commit

Permalink
re-add skips of flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Sep 18, 2020
1 parent c7b1da7 commit 98e3db0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function ({ getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/76551
it('should complete a job of PNG export of a dashboard in non-default space', async () => {
it.skip('should complete a job of PNG export of a dashboard in non-default space', async () => {
const downloadPath = await reportingAPI.postJobJSON(
`/s/non_default_space/api/reporting/generate/png`,
{
Expand All @@ -116,7 +116,7 @@ export default function ({ getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/76551
it('should complete a job of PDF export of a dashboard in non-default space', async () => {
it.skip('should complete a job of PDF export of a dashboard in non-default space', async () => {
const downloadPath = await reportingAPI.postJobJSON(
`/s/non_default_space/api/reporting/generate/printablePdf`,
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function ({ getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/76581
it('should handle preserve_layout pdf', async () => {
it.skip('should handle preserve_layout pdf', async () => {
await reportingAPI.expectAllJobsToFinishSuccessfully(
await Promise.all([
reportingAPI.postJob(GenerationUrls.PDF_PRESERVE_DASHBOARD_FILTER_6_3),
Expand All @@ -151,7 +151,7 @@ export default function ({ getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/76581
it('should handle print_layout pdf', async () => {
it.skip('should handle print_layout pdf', async () => {
await reportingAPI.expectAllJobsToFinishSuccessfully(
await Promise.all([
reportingAPI.postJob(GenerationUrls.PDF_PRINT_DASHBOARD_6_3),
Expand Down

0 comments on commit 98e3db0

Please sign in to comment.