Skip to content

Commit

Permalink
skip flaky suite (#75044)
Browse files Browse the repository at this point in the history
(cherry picked from commit d4f5247)
  • Loading branch information
spalger committed Aug 15, 2020
1 parent 4b65ae2 commit 37d4a55
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const testSubjects = getService('testSubjects');
const esArchiver = getService('esArchiver');

describe('Listing of Reports', function () {
// FLAKY: https://github.com/elastic/kibana/issues/75044
describe.skip('Listing of Reports', function () {
before(async () => {
await security.testUser.setRoles(['kibana_admin', 'reporting_user']);
await esArchiver.load('empty_kibana');
Expand Down Expand Up @@ -67,7 +68,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
});
});

it.skip('Paginates historical reports', async () => {
it('Paginates historical reports', async () => {
// wait for first row of page 1
await testSubjects.find('checkboxSelectRow-k9a9xlwl0gpe1457b10rraq3');

Expand Down

0 comments on commit 37d4a55

Please sign in to comment.