kibana/x-pack/test/functional_vis_wizard/apps/visualization_wizard.ts
Spencer f466ebf1a3
[esArchiver] drop support for --dir, use repo-relative paths instead (#101345)
Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-06-08 17:37:42 -04:00

35 lines
1.4 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 expect from '@kbn/expect';
import { FtrProviderContext } from '../ftr_provider_context';
export default function ({ getService, getPageObjects }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const PageObjects = getPageObjects(['visualize']);
describe('lens and maps disabled', function () {
before(async function () {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/logstash_functional');
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/visualize/default');
});
after(async function () {
await esArchiver.unload('x-pack/test/functional/es_archives/logstash_functional');
await esArchiver.unload('x-pack/test/functional/es_archives/visualize/default');
});
it('should not display lens and maps cards', async function () {
await PageObjects.visualize.navigateToNewVisualization();
const expectedChartTypes = ['Custom visualization', 'TSVB'];
// find all the chart types and make sure that maps and lens cards are not there
const chartTypes = (await PageObjects.visualize.getPromotedVisTypes()).sort();
expect(chartTypes).to.eql(expectedChartTypes);
});
});
}