skip flaky suite (#93152)

This commit is contained in:
Tiago Costa 2021-03-02 14:34:27 +00:00
parent a8adbbf800
commit b33ea364af
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA
2 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,8 @@ export default ({ getService }: FtrProviderContext) => {
/**
* Specific api integration tests for threat matching rule type
*/
describe('create_threat_matching', () => {
// FLAKY: https://github.com/elastic/kibana/issues/93152
describe.skip('create_threat_matching', () => {
describe('validation errors', () => {
it('should give an error that the index must exist first if it does not exist before creating a rule', async () => {
const { body } = await supertest

View file

@ -14,8 +14,7 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');
// FLAKY: https://github.com/elastic/kibana/issues/93152
describe.skip('total feature importance panel and decision path popover', function () {
describe('total feature importance panel and decision path popover', function () {
const testDataList: Array<{
suiteTitle: string;
archive: string;