Skip to content

Commit

Permalink
unload data after test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkime committed Feb 7, 2023
1 parent 978f539 commit a1eb445
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.settings.clickKibanaIndexPatterns();
});

after(async function () {
await esArchiver.unload(
'test/functional/fixtures/es_archiver/kibana_sample_data_flights_index_pattern'
);
});

describe('can open and close editor', function () {
it('without creating index pattern', async function () {
await PageObjects.settings.clickKibanaIndexPatterns();
Expand Down

0 comments on commit a1eb445

Please sign in to comment.