[Endpoint]EMT: temporarily skip test till package update. (#67778)

[Endpoint]EMT: temporarily skip test till package update.
This commit is contained in:
nnamdifrankie 2020-05-29 13:33:46 -04:00 committed by GitHub
parent 1d5933b9a6
commit 6b7b0cbc44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -70,7 +70,7 @@ export default function ({ getService }: FtrProviderContext) {
let nullableEventId = '';
describe('Endpoint alert API', () => {
describe.skip('Endpoint alert API', () => {
describe('when data is in elasticsearch', () => {
before(async () => {
await esArchiver.load('endpoint/alerts/api_feature');

View file

@ -9,7 +9,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
describe('Endpoint index pattern API', () => {
describe.skip('Endpoint index pattern API', () => {
it('should retrieve the index pattern for events', async () => {
const { body } = await supertest.get('/api/endpoint/index_pattern/events').expect(200);
expect(body.indexPattern).to.eql('events-endpoint-*');

View file

@ -14,7 +14,7 @@ const numberOfHostsInFixture = 3;
export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const supertest = getService('supertest');
describe('test metadata api', () => {
describe.skip('test metadata api', () => {
describe('POST /api/endpoint/metadata when index is empty', () => {
it('metadata api should return empty result when index is empty', async () => {
await esArchiver.unload('endpoint/metadata/api_feature');