skip failing test suite (#167076)

This commit is contained in:
Jonathan Budzenski 2023-10-06 12:46:24 -05:00
parent 8139628192
commit 1261686188

View file

@ -23,9 +23,9 @@ export default function featureControlsTests({ getService }: FtrProviderContext)
const logger = getService('log');
const es = getService('es');
registry.when('Profiling status check', { config: 'cloud' }, () => {
// Failing: See https://github.com/elastic/kibana/issues/167076
describe.skip('Profiling is not set up and no data is loaded', () => {
// Failing: See https://github.com/elastic/kibana/issues/167076
registry.when.skip('Profiling status check', { config: 'cloud' }, () => {
describe('Profiling is not set up and no data is loaded', () => {
before(async () => {
await cleanUpProfilingData({ es, logger, bettertest });
});