Disable CCR and Remote Clusters API integration tests on Cloud, because Cloud has disabled those features. (#38612) (#38631)

This commit is contained in:
CJ Cenizal 2019-06-10 20:59:09 -07:00 committed by GitHub
parent fbb9a5020b
commit 5fe49098f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View file

@ -46,7 +46,9 @@ export default function ({ getService }) {
})
);
describe('auto follow patterns', () => {
describe('auto follow patterns', function () {
this.tags(['skipCloud']);
afterEach(() => {
return cleanUp();
});

View file

@ -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());

View file

@ -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}`;