mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
skip flaky suite, and dependent suite (#90229)
This commit is contained in:
parent
9232a5a26a
commit
27a53cf4d7
2 changed files with 4 additions and 2 deletions
|
@ -21,7 +21,8 @@ export default ({ getService }: FtrProviderContext) => {
|
||||||
const supertestWithoutAuth = getService('supertestWithoutAuth');
|
const supertestWithoutAuth = getService('supertestWithoutAuth');
|
||||||
const security = getService('security');
|
const security = getService('security');
|
||||||
|
|
||||||
describe('create_index', () => {
|
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/90229
|
||||||
|
describe.skip('create_index', () => {
|
||||||
afterEach(async () => {
|
afterEach(async () => {
|
||||||
await deleteSignalsIndex(supertest);
|
await deleteSignalsIndex(supertest);
|
||||||
});
|
});
|
||||||
|
|
|
@ -15,7 +15,8 @@ export default ({ getService }: FtrProviderContext) => {
|
||||||
const supertest = getService('supertest');
|
const supertest = getService('supertest');
|
||||||
const supertestWithoutAuth = getService('supertestWithoutAuth');
|
const supertestWithoutAuth = getService('supertestWithoutAuth');
|
||||||
|
|
||||||
describe('read_privileges', () => {
|
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/90229
|
||||||
|
describe.skip('read_privileges', () => {
|
||||||
it('should return expected privileges for elastic admin', async () => {
|
it('should return expected privileges for elastic admin', async () => {
|
||||||
const { body } = await supertest.get(DETECTION_ENGINE_PRIVILEGES_URL).send().expect(200);
|
const { body } = await supertest.get(DETECTION_ENGINE_PRIVILEGES_URL).send().expect(200);
|
||||||
expect(body).to.eql({
|
expect(body).to.eql({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue