Skip to content

Commit

Permalink
skip flaky suite (#95660) (#95706)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Apr 2, 2021
1 parent eae160c commit 6868f18
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions test/functional/apps/management/_import_objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const log = getService('log');

describe('import objects', function describeIndexTests() {
// FLAKY: https://github.com/elastic/kibana/issues/95660
// FLAKY: https://github.com/elastic/kibana/issues/95706
describe.skip('import objects', function describeIndexTests() {
describe('.ndjson file', () => {
beforeEach(async function () {
await esArchiver.load('management');
Expand Down Expand Up @@ -291,8 +293,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
expect(isSuccessful).to.be(true);
});

// https://github.com/elastic/kibana/issues/95660
it.skip('should allow the user to confirm overriding multiple duplicate saved objects', async function () {
it('should allow the user to confirm overriding multiple duplicate saved objects', async function () {
// This data has already been loaded by the "visualize" esArchive. We'll load it again
// so that we can override the existing visualization.
await PageObjects.savedObjects.importFile(
Expand Down

0 comments on commit 6868f18

Please sign in to comment.