Skip to content

Commit

Permalink
turn on all tests except full screen
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Mar 28, 2020
1 parent bcb620d commit c4f01e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function({ getPageObjects, getService }) {
const browser = getService('browser');
const inspector = getService('inspector');

describe.skip('map saved object management', () => {
describe('map saved object management', () => {
const MAP_NAME_PREFIX = 'saved_object_management_test_';
const MAP1_NAME = `${MAP_NAME_PREFIX}map1`;
const MAP2_NAME = `${MAP_NAME_PREFIX}map2`;
Expand Down
8 changes: 5 additions & 3 deletions x-pack/test/functional/apps/maps/vector_styling.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,20 @@ import expect from '@kbn/expect';
export default function({ getPageObjects }) {
const PageObjects = getPageObjects(['maps']);

describe.skip('vector styling', () => {
describe('vector styling', () => {
before(async () => {
await PageObjects.maps.loadSavedMap('document example');
});

describe('categorical styling', () => {
it('should provide auto complete suggestions', async () => {
before(async () => {
await PageObjects.maps.openLayerPanel('logstash');
});

it('should provide auto complete suggestions', async () => {
await PageObjects.maps.setStyleByValue('fillColor', 'machine.os.raw');
await PageObjects.maps.selectCustomColorRamp('fillColor');
const suggestions = await PageObjects.maps.getCategorySuggestions();
await PageObjects.maps.closeLayerPanel();
expect(
suggestions
.trim()
Expand Down

0 comments on commit c4f01e4

Please sign in to comment.