[tests] Temporarily skipped Fleet tests

Most fleet tests are colliding with the change to timestamp_field ES
change

https://github.com/elastic/kibana/pull/71727

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2020-07-14 19:54:32 -07:00
parent a8513256a0
commit 3984ffa135
5 changed files with 7 additions and 11 deletions

View file

@ -18,7 +18,7 @@ export default function (providerContext: FtrProviderContext) {
const supertestWithoutAuth = getSupertestWithoutAuth(providerContext);
const esClient = getService('es');
describe.skip('fleet_agent_flow', () => {
describe('fleet_agent_flow', () => {
before(async () => {
await esArchiver.load('empty_kibana');
});

View file

@ -21,9 +21,7 @@ export default function (providerContext: FtrProviderContext) {
let apiKey: { id: string; api_key: string };
let kibanaVersion: string;
// Temporarily skipped to promote snapshot
// Re-enabled in https://github.com/elastic/kibana/pull/71727
describe.skip('fleet_agents_enroll', () => {
describe('fleet_agents_enroll', () => {
before(async () => {
await esArchiver.loadIfNeeded('fleet/agents');

View file

@ -5,7 +5,9 @@
*/
export default function loadTests({ loadTestFile }) {
describe('Fleet Endpoints', () => {
// Temporarily skipped to promote snapshot
// Re-enabled in https://github.com/elastic/kibana/pull/71727
describe.skip('Fleet Endpoints', () => {
loadTestFile(require.resolve('./setup'));
loadTestFile(require.resolve('./delete_agent'));
loadTestFile(require.resolve('./list_agent'));

View file

@ -11,9 +11,7 @@ export default function ({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const es = getService('es');
// Temporarily skipped to promote snapshot
// Re-enabled in https://github.com/elastic/kibana/pull/71727
describe.skip('fleet_setup', () => {
describe('fleet_setup', () => {
beforeEach(async () => {
try {
await es.security.deleteUser({

View file

@ -16,9 +16,7 @@ export default function (providerContext: FtrProviderContext) {
const supertest = getService('supertest');
const esClient = getService('es');
// Temporarily skipped to promote snapshot
// Re-enabled in https://github.com/elastic/kibana/pull/71727
describe.skip('fleet_unenroll_agent', () => {
describe('fleet_unenroll_agent', () => {
let accessAPIKeyId: string;
let outputAPIKeyId: string;
before(async () => {