mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Disable CCR and Remote Clusters API integration tests on Cloud, because Cloud has disabled those features. (#38612) (#38631)
This commit is contained in:
parent
fbb9a5020b
commit
5fe49098f6
3 changed files with 9 additions and 4 deletions
|
@ -46,7 +46,9 @@ export default function ({ getService }) {
|
|||
})
|
||||
);
|
||||
|
||||
describe('auto follow patterns', () => {
|
||||
describe('auto follow patterns', function () {
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
afterEach(() => {
|
||||
return cleanUp();
|
||||
});
|
||||
|
|
|
@ -64,8 +64,9 @@ export default function ({ getService }) {
|
|||
})
|
||||
);
|
||||
|
||||
// Flaky tests; possible race condition with ES.
|
||||
describe('follower indices', () => {
|
||||
describe('follower indices', function () {
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
before(() => addCluster());
|
||||
after(() => cleanUp());
|
||||
|
||||
|
|
|
@ -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