Skip to content

Commit

Permalink
uptime - reskip flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiqueclarke committed Apr 13, 2022
1 parent b78a773 commit bd6905b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions x-pack/test/functional/apps/uptime/certificates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const es = getService('es');

describe('certificates', function () {
describe('empty certificates', function () {
// FLAKY: https://github.com/elastic/kibana/issues/114261
describe.skip('empty certificates', function () {
before(async () => {
await esArchiver.load(BLANK_INDEX_PATH);
await makeCheck({ es });
Expand Down Expand Up @@ -61,7 +62,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await uptimeService.navigation.goToCertificates();
});

describe('page', () => {
// FLAKY: https://github.com/elastic/kibana/issues/114215
describe.skip('page', () => {
beforeEach(async () => {
await uptimeService.navigation.goToCertificates();
await uptimeService.navigation.refreshApp();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('no uptime privileges', () => {
// FLAKY: https://github.com/elastic/kibana/issues/104249
describe.skip('no uptime privileges', () => {
before(async () => {
await security.role.create('no_uptime_privileges_role', {
elasticsearch: {
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/uptime/overview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

const testSubjects = getService('testSubjects');

describe('overview page', function () {
// FLAKY: https://github.com/elastic/kibana/issues/89072
describe.skip('overview page', function () {
const DEFAULT_DATE_START = 'Sep 10, 2019 @ 12:40:08.078';
const DEFAULT_DATE_END = 'Sep 11, 2019 @ 19:40:08.078';

Expand Down

0 comments on commit bd6905b

Please sign in to comment.