mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Add feature flag to display a blank overview page when enabled * Add tests for overview page feature flag * Fix types * Fix more types * Remove duplicated BucketSize type * fix linter Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import * as PluginContext from '../../hooks/use_plugin_context';
|
|
import { PluginContextValue } from '../../context/plugin_context';
|
|
import { OverviewPage } from './';
|
|
import { OverviewPage as OldOverviewPage } from './old_overview_page';
|
|
import { OverviewPage as NewOverviewPage } from './overview_page';
|
|
|
|
describe('Overview page', () => {
|
|
it('should render the old overview page when feature flag is disabled', () => {
|
|
const pluginContext = {
|
|
config: {
|
|
unsafe: {
|
|
overviewNext: { enabled: false },
|
|
},
|
|
},
|
|
};
|
|
|
|
jest
|
|
.spyOn(PluginContext, 'usePluginContext')
|
|
.mockReturnValue(pluginContext as PluginContextValue);
|
|
|
|
const component = shallow(<OverviewPage routeParams={{ query: {} }} />);
|
|
expect(component.find(OldOverviewPage)).toHaveLength(1);
|
|
expect(component.find(NewOverviewPage)).toHaveLength(0);
|
|
});
|
|
|
|
it('should render the new overview page when feature flag is enabled', () => {
|
|
const pluginContext = {
|
|
config: {
|
|
unsafe: {
|
|
overviewNext: { enabled: true },
|
|
},
|
|
},
|
|
};
|
|
|
|
jest
|
|
.spyOn(PluginContext, 'usePluginContext')
|
|
.mockReturnValue(pluginContext as PluginContextValue);
|
|
|
|
const component = shallow(<OverviewPage routeParams={{ query: {} }} />);
|
|
expect(component.find(OldOverviewPage)).toHaveLength(0);
|
|
expect(component.find(NewOverviewPage)).toHaveLength(1);
|
|
});
|
|
});
|