skip flaky sample data tests (#19503)

This commit is contained in:
Nathan Reese 2018-05-29 09:59:30 -06:00 committed by GitHub
parent 7ecd638d75
commit f83a844c1a
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);
});