Skip to content

Commit

Permalink
skip flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed Feb 14, 2020
1 parent 945daa4 commit 2be7ab0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/rollup_job/tsvb.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()}`;
Expand Down

0 comments on commit 2be7ab0

Please sign in to comment.