skip flaky tests (#57643)

This commit is contained in:
Jonathan Budzenski 2020-02-13 19:03:26 -06:00 committed by GitHub
parent 945daa4f05
commit b22045433e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -178,7 +178,8 @@ export default function({ getPageObjects, getService }: FtrProviderContext) {
expect(navLinks).to.eql(['Discover', 'Stack Management']);
});
it(`does not allow navigation to advanced settings; redirects to management home`, async () => {
// https://github.com/elastic/kibana/issues/57377
it.skip(`does not allow navigation to advanced settings; redirects to management home`, async () => {
await PageObjects.common.navigateToActualUrl('kibana', 'management/kibana/settings', {
ensureCurrentUrl: false,
shouldLoginIfPrompted: false,

View file

@ -21,7 +21,8 @@ export default function({ getService, getPageObjects }) {
'timePicker',
]);
describe('tsvb integration', function() {
// https://github.com/elastic/kibana/issues/56816
describe.skip('tsvb integration', function() {
//Since rollups can only be created once with the same name (even if you delete it),
//we add the Date.now() to avoid name collision if you run the tests locally back to back.
const rollupJobName = `tsvb-test-rollup-job-${Date.now()}`;