Skip to content

Commit

Permalink
fix location of es archive file
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-pichette committed Feb 21, 2020
1 parent 5a62211 commit 6e1c87f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/test/functional/apps/endpoint/management.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

it('displays no items found', async () => {
// clear out the data and reload the page
await esArchiver.unload('endpoint/endpoints/api_feature');
await esArchiver.unload('endpoint/metadata/api_feature');
await pageObjects.common.navigateToUrlWithBrowserHistory('endpoint', '/management');
// get the table data and verify no entries appear
const tableData = await pageObjects.endpoint.getEndpointAppTableData('managementListTable');
expect(tableData[1][0]).to.equal('No items found');
// reload the data so the other tests continue to pass
await esArchiver.load('endpoint/endpoints/api_feature');
await esArchiver.load('endpoint/metadata/api_feature');
});

after(async () => {
Expand Down

0 comments on commit 6e1c87f

Please sign in to comment.