Skip to content

Commit

Permalink
Remove superfluous test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Aug 30, 2023
1 parent b192889 commit d8e572c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
9 changes: 0 additions & 9 deletions x-pack/test/functional/apps/observability_log_explorer/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,10 @@ import expect from '@kbn/expect';
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const kibanaServer = getService('kibanaServer');
const PageObjects = getPageObjects(['common', 'navigationalSearch', 'observabilityLogExplorer']);
const testSubjects = getService('testSubjects');

describe('Application', () => {
before('initialize tests', async () => {
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
});

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

it('is shown in the global search', async () => {
await PageObjects.common.navigateToApp('home');
await PageObjects.navigationalSearch.searchFor('log explorer');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,9 @@ import expect from '@kbn/expect';
import { FtrProviderContext } from '../../../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const kibanaServer = getService('kibanaServer');
const PageObjects = getPageObjects(['observabilityLogExplorer', 'svlCommonNavigation']);

describe('Application', () => {
before('initialize tests', async () => {
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
});

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

it('is shown in the global search', async () => {
await PageObjects.observabilityLogExplorer.navigateTo();
await PageObjects.svlCommonNavigation.search.showSearch();
Expand Down

0 comments on commit d8e572c

Please sign in to comment.