Skip to content

Commit

Permalink
skip tests for old pacakge
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlog committed Sep 22, 2020
1 parent c03c7b3 commit 18ef35c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ 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');
expect(tableData).to.eql(expectedData);
});
});

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();
Expand Down Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 });

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 18ef35c

Please sign in to comment.