Skip to content

Commit

Permalink
[Archive Migration][Partial] discover apps-home
Browse files Browse the repository at this point in the history
Comes from #102827

Helps with #108503

Piggy back off of the work from @tylersmalley
Only include the changes under the
test/functional/apps/home folder.
  • Loading branch information
wayneseymour committed Aug 30, 2021
1 parent 57dc0c1 commit c0914a8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/functional/apps/home/_navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const PageObjects = getPageObjects(['common', 'header', 'home', 'timePicker']);
const appsMenu = getService('appsMenu');
const esArchiver = getService('esArchiver');
const kibanaServer = getService('kibanaServer');

describe('Kibana browser back navigation should work', function describeIndexTests() {
before(async () => {
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/discover');
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
});

after(async () => {
await kibanaServer.importExport.unload('test/functional/fixtures/kbn_archiver/discover');
});

it('detect navigate back issues', async () => {
Expand Down

0 comments on commit c0914a8

Please sign in to comment.