[ftr/dashboard+scripting] disable unstable tests (#12592)

(cherry picked from commit aa729af3a1)
This commit is contained in:
Spencer 2017-06-30 00:03:18 -07:00 committed by spalger
parent 32a07567d3
commit 9828ebab0f
3 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ export default function ({ getService }) {
})
));
it('should only return langs enabled for inline scripting', () => (
it.skip('should only return langs enabled for inline scripting', () => (
supertest.get('/api/kibana/scripts/languages')
.expect(200)
.then((response) => {

View file

@ -29,7 +29,7 @@ export default function ({ getPageObjects }) {
await PageObjects.header.clickToastOK();
});
it('Does not set the time picker on open', async function () {
it.skip('Does not set the time picker on open', async function () {
await PageObjects.header.setAbsoluteRange(fromTime, toTime);
await PageObjects.dashboard.loadSavedDashboard(dashboardName);
@ -81,7 +81,7 @@ export default function ({ getPageObjects }) {
// when it's opened. However, if the user then changes the time, navigates to visualize, then navigates
// back to dashboard, the overridden time should be preserved. The time is *only* reset on open, not
// during navigation or page refreshes.
describe('time changes', function () {
describe.skip('time changes', function () {
it('preserved during navigation', async function () {
await PageObjects.header.setQuickTime('Today');
await PageObjects.header.clickVisualize();

View file

@ -164,7 +164,7 @@ export default function ({ getService, getPageObjects }) {
expect(query).to.equal(originalQuery);
});
it('when a filter is deleted', async function () {
it.skip('when a filter is deleted', async function () {
await PageObjects.dashboard.setTimepickerInDataRange();
await PageObjects.dashboard.filterOnPieSlice();
await PageObjects.dashboard.saveDashboard(dashboardName);