mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Re-implement Visualize Wizard using Gallery component for selecting visualization type (#10972)
* Add Gallery and GalleryButton components to UI Framework. * Re-implement Visualize Wizard using Gallery component for selecting visualization type.
This commit is contained in:
parent
7ac2d72591
commit
14ed2e55e6
41 changed files with 828 additions and 111 deletions
|
@ -16,9 +16,21 @@ bdd.describe('visualize app', function describeIndexTests() {
|
|||
bdd.describe('chart types', function indexPatternCreation() {
|
||||
bdd.it('should show the correct chart types', function () {
|
||||
const expectedChartTypes = [
|
||||
'Area chart', 'Data table', 'Heatmap chart', 'Horizontal bar chart', 'Line chart', 'Markdown widget',
|
||||
'Metric', 'Pie chart', 'Tag cloud', 'Tile map', 'Time Series Visual Builder', 'Timelion', 'Vertical bar chart'
|
||||
'Area',
|
||||
'Heat Map',
|
||||
'Horizontal Bar',
|
||||
'Line',
|
||||
'Pie',
|
||||
'Vertical Bar',
|
||||
'Data Table',
|
||||
'Metric',
|
||||
'Tile Map',
|
||||
'Timelion',
|
||||
'Visual Builder',
|
||||
'Markdown',
|
||||
'Tag Cloud',
|
||||
];
|
||||
|
||||
// find all the chart types and make sure there all there
|
||||
return PageObjects.visualize.getChartTypes()
|
||||
.then(function testChartTypes(chartTypes) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue