mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* skip test
* also skip closing
* skip failing test (#42630)
* Revert "disable all maps tests"
This reverts commit 42c35e0e12
.
* skip file_indexing_panel tests
This commit is contained in:
parent
a2bed4f473
commit
8667d5d8f7
4 changed files with 11 additions and 6 deletions
|
@ -16,13 +16,17 @@ export default function ({ getService, getPageObjects }) {
|
|||
});
|
||||
|
||||
describe('visibility', () => {
|
||||
it('should open on clicking "Add layer"', async () => {
|
||||
|
||||
|
||||
//skip for now
|
||||
//cf. https://github.com/elastic/kibana/issues/42626
|
||||
it.skip('should open on clicking "Add layer"', async () => {
|
||||
await PageObjects.maps.clickAddLayer();
|
||||
const panelOpen = await PageObjects.maps.isLayerAddPanelOpen();
|
||||
expect(panelOpen).to.be(true);
|
||||
});
|
||||
|
||||
it('should close on clicking "Cancel"', async () => {
|
||||
it.skip('should close on clicking "Cancel"', async () => {
|
||||
await PageObjects.maps.cancelLayerAdd();
|
||||
const panelOpen = await PageObjects.maps.isLayerAddPanelOpen();
|
||||
expect(panelOpen).to.be(false);
|
||||
|
|
|
@ -14,7 +14,8 @@ export default function ({ getPageObjects }) {
|
|||
const FILE_LOAD_DIR = 'test_upload_files';
|
||||
const DEFAULT_LOAD_FILE_NAME = 'point.json';
|
||||
|
||||
describe('GeoJSON import layer panel', () => {
|
||||
// FAILING: https://github.com/elastic/kibana/issues/42630
|
||||
describe.skip('GeoJSON import layer panel', () => {
|
||||
before(async () => {
|
||||
await PageObjects.maps.openNewMap();
|
||||
});
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
export default function ({ loadTestFile }) {
|
||||
describe('import_geojson', function () {
|
||||
loadTestFile(require.resolve('./add_layer_import_panel'));
|
||||
loadTestFile(require.resolve('./file_indexing_panel'));
|
||||
// FAILING/FLAKY: https://github.com/elastic/kibana/pull/42638
|
||||
//loadTestFile(require.resolve('./file_indexing_panel'));
|
||||
});
|
||||
}
|
||||
|
|
|
@ -39,8 +39,7 @@ export default async function ({ readConfigFile }) {
|
|||
resolve(__dirname, './apps/infra'),
|
||||
resolve(__dirname, './apps/machine_learning'),
|
||||
resolve(__dirname, './apps/rollup_job'),
|
||||
// FAILING/FLAKY: https://github.com/elastic/kibana/pull/42638
|
||||
// resolve(__dirname, './apps/maps'),
|
||||
resolve(__dirname, './apps/maps'),
|
||||
resolve(__dirname, './apps/status_page'),
|
||||
resolve(__dirname, './apps/timelion'),
|
||||
resolve(__dirname, './apps/upgrade_assistant'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue