Skip to content

Commit

Permalink
[ftr] skip Reporting Management on MKI (elastic#168575)
Browse files Browse the repository at this point in the history
## Summary

Skipping api tests that fail on MKI 

```
Reporting
--
  | │       Reporting Management
  | │         "before each" hook for "user can not delete a report they haven't created":
  | │
  | │      ResponseError: security_exception
  | │ 	Root causes:
  | │ 		security_exception: action [indices:admin/create] is unauthorized for user [elastic] with effective roles [superuser] on restricted indices [.reporting-2020.04.19], this action is granted by the index privileges [create_index,manage,all]
  | │       at SniffingTransport.request (node_modules/@elastic/transport/src/Transport.ts:535:17)
  | │       at processTicksAndRejections (node:internal/process/task_queues:95:5)
  | │       at Indices.create (node_modules/@elastic/elasticsearch/src/api/api/indices.ts:251:12)
  | │       at attemptToCreate (create_index_stream.ts:145:9)
  | │       at handleIndex (create_index_stream.ts:211:5)
  | │       at Transform.transform [as _transform] (create_index_stream.ts:221:13)
```
  • Loading branch information
dmlemeshko authored Oct 11, 2023
1 parent d271a74 commit 69e04df
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
};

describe('Reporting Management app', function () {
// security_exception: action [indices:admin/create] is unauthorized for user [elastic] with effective roles [superuser] on restricted indices [.reporting-2020.04.19], this action is granted by the index privileges [create_index,manage,all]
this.tags('failsOnMKI');
const savedObjectsArchive = 'test/functional/fixtures/kbn_archiver/discover';

const job: JobParamsCsvFromSavedObject = {
Expand Down

0 comments on commit 69e04df

Please sign in to comment.