mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
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:
parent
712111fb15
commit
afb145cefb
3 changed files with 3 additions and 6 deletions
|
@ -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');
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue