Skip to content

Commit afb145c

Browse files
authored
Unskip report tests (#157885)
## Summary Closes #156901, #156902, and #156106 As Tim discovered and mentioned in 156901 - these suite of tests were skipped because of a new limit that was reverted in es elastic/elasticsearch#96031 Tests pass without any problems now.
1 parent 712111f commit afb145c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

x-pack/test/examples/screenshotting/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ export default function ({
2020
const testSubjects = getService('testSubjects');
2121
const PageObjects = getPageObjects(['common']);
2222

23-
// FLAKY: https://github.com/elastic/kibana/issues/156106
24-
describe.skip('Screenshotting Example', function () {
23+
describe('Screenshotting Example', function () {
2524
before(async () => {
2625
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
2726
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/visualize.json');

x-pack/test/functional/apps/reporting_management/report_listing.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
1818
const testSubjects = getService('testSubjects');
1919
const esArchiver = getService('esArchiver');
2020

21-
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/156901
22-
describe.skip('Listing of Reports', function () {
21+
describe('Listing of Reports', function () {
2322
before(async () => {
2423
await security.testUser.setRoles([
2524
'kibana_admin', // to access stack management

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
1515
const esArchiver = getService('esArchiver');
1616
const supertest = getService('supertestWithoutAuth');
1717

18-
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/156902
19-
describe.skip('Reporting error codes', () => {
18+
describe('Reporting error codes', () => {
2019
it('places error_code in report output', async () => {
2120
await reportingAPI.initEcommerce();
2221

0 commit comments

Comments
 (0)