skip tests for old pacakge (#78194)

This commit is contained in:
Kevin Logan 2020-09-23 08:21:33 -04:00 committed by GitHub
parent 2c6cae7b9a
commit 0ed3a5f303
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -86,7 +86,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await testSubjects.exists('emptyPolicyTable');
});
it('finds data after load and polling', async () => {
it.skip('finds data after load and polling', async () => {
await esArchiver.load('endpoint/metadata/destination_index', { useCreate: true });
await pageObjects.endpoint.waitForTableToHaveData('endpointListTable', 1100);
const tableData = await pageObjects.endpointPageUtils.tableData('endpointListTable');
@ -94,7 +94,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});
describe('when there is data,', () => {
describe.skip('when there is data,', () => {
before(async () => {
await esArchiver.load('endpoint/metadata/destination_index', { useCreate: true });
await pageObjects.endpoint.navigateToEndpointList();
@ -212,7 +212,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});
describe('displays the correct table data for the kql queries', () => {
describe.skip('displays the correct table data for the kql queries', () => {
before(async () => {
await esArchiver.load('endpoint/metadata/destination_index', { useCreate: true });
await pageObjects.endpoint.navigateToEndpointList();

View file

@ -18,7 +18,7 @@ export default function (providerContext: FtrProviderContext) {
const supertestWithoutAuth = getSupertestWithoutAuth(providerContext);
let agentAccessAPIKey: string;
describe('artifact download', () => {
describe.skip('artifact download', () => {
before(async () => {
await esArchiver.load('endpoint/artifacts/api_feature', { useCreate: true });

View file

@ -23,7 +23,7 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const supertest = getService('supertest');
describe('test metadata api', () => {
describe.skip('test metadata api', () => {
describe(`POST ${METADATA_REQUEST_ROUTE} when index is empty`, () => {
it('metadata api should return empty result when index is empty', async () => {
await deleteMetadataStream(getService);