Skip to content

Commit

Permalink
[ftr/dashboard+scripting] disable unstable tests (elastic#12592)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger authored Jun 30, 2017
1 parent f0f1998 commit aa729af
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/api_integration/apis/scripts/languages.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
4 changes: 2 additions & 2 deletions test/functional/apps/dashboard/_dashboard_time.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion test/functional/apps/dashboard/_view_edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit aa729af

Please sign in to comment.