Skip to content

Commit 9b41c5d

Browse files
committed
Reporting/Test: unskip non-screenshot tests
1 parent 86582a5 commit 9b41c5d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

x-pack/test/reporting_api_integration/reporting_and_security/spaces.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ export default function ({ getService }: FtrProviderContext) {
2727
);
2828
};
2929

30-
// FLAKY: https://github.com/elastic/kibana/issues/76551
31-
describe.skip('Exports from Non-default Space', () => {
30+
describe('Exports from Non-default Space', () => {
3231
before(async () => {
3332
await esArchiver.load('reporting/ecommerce');
3433
await esArchiver.load('reporting/ecommerce_kibana_spaces'); // dashboard in non default space
@@ -54,7 +53,8 @@ export default function ({ getService }: FtrProviderContext) {
5453
expect(reportCompleted).to.match(/^"order_date",/);
5554
});
5655

57-
it('should complete a job of PNG export of a dashboard in non-default space', async () => {
56+
// FLAKY: https://github.com/elastic/kibana/issues/76551
57+
it.skip('should complete a job of PNG export of a dashboard in non-default space', async () => {
5858
const downloadPath = await reportingAPI.postJob(
5959
`/s/non_default_space/api/reporting/generate/png?jobParams=%28browserTimezone%3AUTC%2Clayout%3A%28dimensions%3A%28height%3A512%2Cwidth%3A2402%29%2Cid%3Apng%29%2CobjectType%3Adashboard%2CrelativeUrl%3A%27%2Fs%2Fnon_default_space%2Fapp%2Fdashboards%23%2Fview%2F3c9ee360-e7ee-11ea-a730-d58e9ea7581b%3F_g%3D%28filters%3A%21%21%28%29%2CrefreshInterval%3A%28pause%3A%21%21t%2Cvalue%3A0%29%2Ctime%3A%28from%3A%21%272019-06-10T03%3A17%3A28.800Z%21%27%2Cto%3A%21%272019-07-14T19%3A25%3A06.385Z%21%27%29%29%26_a%3D%28description%3A%21%27%21%27%2Cfilters%3A%21%21%28%29%2CfullScreenMode%3A%21%21f%2Coptions%3A%28hidePanelTitles%3A%21%21f%2CuseMargins%3A%21%21t%29%2Cquery%3A%28language%3Akuery%2Cquery%3A%21%27%21%27%29%2CtimeRestore%3A%21%21t%2Ctitle%3A%21%27Ecom%2520Dashboard%2520Non%2520Default%2520Space%21%27%2CviewMode%3Aview%29%27%2Ctitle%3A%27Ecom%20Dashboard%20Non%20Default%20Space%27%29`
6060
);
@@ -64,7 +64,8 @@ export default function ({ getService }: FtrProviderContext) {
6464
expect(reportCompleted).to.not.be(null);
6565
});
6666

67-
it('should complete a job of PDF export of a dashboard in non-default space', async () => {
67+
// FLAKY: https://github.com/elastic/kibana/issues/76551
68+
it.skip('should complete a job of PDF export of a dashboard in non-default space', async () => {
6869
const downloadPath = await reportingAPI.postJob(
6970
`/s/non_default_space/api/reporting/generate/printablePdf?jobParams=%28browserTimezone%3AUTC%2Clayout%3A%28dimensions%3A%28height%3A512%2Cwidth%3A2402%29%2Cid%3Apreserve_layout%29%2CobjectType%3Adashboard%2CrelativeUrls%3A%21%28%27%2Fs%2Fnon_default_space%2Fapp%2Fdashboards%23%2Fview%2F3c9ee360-e7ee-11ea-a730-d58e9ea7581b%3F_g%3D%28filters%3A%21%21%28%29%2CrefreshInterval%3A%28pause%3A%21%21t%2Cvalue%3A0%29%2Ctime%3A%28from%3A%21%272019-06-10T03%3A17%3A28.800Z%21%27%2Cto%3A%21%272019-07-14T19%3A25%3A06.385Z%21%27%29%29%26_a%3D%28description%3A%21%27%21%27%2Cfilters%3A%21%21%28%29%2CfullScreenMode%3A%21%21f%2Coptions%3A%28hidePanelTitles%3A%21%21f%2CuseMargins%3A%21%21t%29%2Cquery%3A%28language%3Akuery%2Cquery%3A%21%27%21%27%29%2CtimeRestore%3A%21%21t%2Ctitle%3A%21%27Ecom%2520Dashboard%2520Non%2520Default%2520Space%21%27%2CviewMode%3Aview%29%27%29%2Ctitle%3A%27Ecom%20Dashboard%20Non%20Default%20Space%27%29`
7071
);

x-pack/test/reporting_api_integration/reporting_and_security/usage.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export default function ({ getService }: FtrProviderContext) {
2121
const reportingAPI = getService('reportingAPI');
2222
const usageAPI = getService('usageAPI');
2323

24-
// FAILING: https://github.com/elastic/kibana/issues/76581
25-
describe.skip('Usage', () => {
24+
describe('Usage', () => {
2625
before(async () => {
2726
await esArchiver.load(OSS_KIBANA_ARCHIVE_PATH);
2827
await esArchiver.load(OSS_DATA_ARCHIVE_PATH);
@@ -116,7 +115,8 @@ export default function ({ getService }: FtrProviderContext) {
116115
});
117116
});
118117

119-
describe('from new jobs posted', () => {
118+
// FAILING: https://github.com/elastic/kibana/issues/76581
119+
describe.skip('from new jobs posted', () => {
120120
it('should handle csv', async () => {
121121
await reportingAPI.expectAllJobsToFinishSuccessfully(
122122
await Promise.all([

0 commit comments

Comments
 (0)