Unskip report tests (#157885)

## Summary

Closes https://github.com/elastic/kibana/issues/156901,
https://github.com/elastic/kibana/issues/156902, and
https://github.com/elastic/kibana/issues/156106

As Tim discovered and mentioned in 156901 - these suite of tests were
skipped because of a new limit that was reverted in es
https://github.com/elastic/elasticsearch/pull/96031

Tests pass without any problems now.
This commit is contained in:
Rachel Shen 2023-05-16 10:41:45 -06:00 committed by GitHub
parent 712111fb15
commit afb145cefb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 6 deletions

View file

@ -20,8 +20,7 @@ export default function ({
const testSubjects = getService('testSubjects');
const PageObjects = getPageObjects(['common']);
// FLAKY: https://github.com/elastic/kibana/issues/156106
describe.skip('Screenshotting Example', function () {
describe('Screenshotting Example', function () {
before(async () => {
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/visualize.json');

View file

@ -18,8 +18,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const testSubjects = getService('testSubjects');
const esArchiver = getService('esArchiver');
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/156901
describe.skip('Listing of Reports', function () {
describe('Listing of Reports', function () {
before(async () => {
await security.testUser.setRoles([
'kibana_admin', // to access stack management

View file

@ -15,8 +15,7 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const supertest = getService('supertestWithoutAuth');
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/156902
describe.skip('Reporting error codes', () => {
describe('Reporting error codes', () => {
it('places error_code in report output', async () => {
await reportingAPI.initEcommerce();