skip flaky sample data tests (#19503) (#19508)

This commit is contained in:
Nathan Reese 2018-05-29 12:52:58 -06:00 committed by GitHub
parent 884237d2b4
commit bced7b7ae3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,27 +68,27 @@ export default function ({ getService, getPageObjects }) {
expect(panelCount).to.be(19);
});
it('pie charts rendered', async () => {
it.skip('pie charts rendered', async () => {
await dashboardExpect.pieSliceCount(4);
});
it('area, bar and heatmap charts rendered', async () => {
it.skip('area, bar and heatmap charts rendered', async () => {
await dashboardExpect.seriesElementCount(15);
});
it('saved searches render', async () => {
it.skip('saved searches render', async () => {
await dashboardExpect.savedSearchRowCount(50);
});
it('input controls render', async () => {
it.skip('input controls render', async () => {
await dashboardExpect.inputControlItemCount(3);
});
it('tag cloud renders', async () => {
it.skip('tag cloud renders', async () => {
await dashboardExpect.tagCloudWithValuesFound(['Sunny', 'Rain', 'Clear', 'Cloudy', 'Hail']);
});
it('vega chart renders', async () => {
it.skip('vega chart renders', async () => {
const tsvb = await find.existsByCssSelector('.vega-view-container');
expect(tsvb).to.be(true);
});