kibana/x-pack/test/endpoint_api_integration_no_ingest/apis/metadata.ts
Spencer f466ebf1a3
[esArchiver] drop support for --dir, use repo-relative paths instead (#101345)
Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-06-08 17:37:42 -04:00

26 lines
997 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { FtrProviderContext } from '../ftr_provider_context';
export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const supertest = getService('supertest');
describe('test metadata api when ingest manager is not initialized', () => {
before(
async () =>
await esArchiver.load('x-pack/test/functional/es_archives/endpoint/metadata/api_feature')
);
after(
async () =>
await esArchiver.unload('x-pack/test/functional/es_archives/endpoint/metadata/api_feature')
);
it('metadata api should not return results', async () => {
await supertest.post('/api/endpoint/metadata').set('kbn-xsrf', 'xxx').send().expect(500);
});
});
}