mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Disable CCR and Remote Clusters API integration tests on Cloud, because Cloud has disabled those features. (#38612) (#38630)
This commit is contained in:
parent
77d4fac563
commit
42d2a74e92
3 changed files with 9 additions and 3 deletions
|
@ -46,7 +46,9 @@ export default function ({ getService }) {
|
|||
})
|
||||
);
|
||||
|
||||
describe('auto follow patterns', () => {
|
||||
describe('auto follow patterns', function () {
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
afterEach(() => {
|
||||
return cleanUp();
|
||||
});
|
||||
|
|
|
@ -50,7 +50,9 @@ export default function ({ getService }) {
|
|||
);
|
||||
|
||||
// Flaky tests; possible race condition with ES.
|
||||
describe.skip('follower indices', () => {
|
||||
describe.skip('follower indices', function () {
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
afterEach(() => cleanUp());
|
||||
|
||||
describe('list()', () => {
|
||||
|
|
|
@ -10,7 +10,9 @@ import { API_BASE_PATH, NODE_SEED } from './constants';
|
|||
export default function ({ getService }) {
|
||||
const supertest = getService('supertest');
|
||||
|
||||
describe('Remote Clusters', () => {
|
||||
describe('Remote Clusters', function () {
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
describe('Empty List', () => {
|
||||
it('should return an empty array when there are no remote clusters', async () => {
|
||||
const uri = `${API_BASE_PATH}`;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue