mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[ftr/dashboard+scripting] disable unstable tests (#12592)
This commit is contained in:
parent
f0f1998175
commit
aa729af3a1
3 changed files with 4 additions and 4 deletions
|
@ -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) => {
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue