mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Skip ILM node API integration tests on Cloud, because they depend on setting custom node attributes and Cloud disallows that. (#38715) (#38808)
This commit is contained in:
parent
f6f2d7d2bb
commit
696bd5ba10
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ export default function ({ getService }) {
|
|||
const { getNodesStats } = initElasticsearchHelpers(es);
|
||||
const { loadNodes, getNodeDetails } = registerHelpers({ supertest });
|
||||
|
||||
describe('nodes', () => {
|
||||
describe('nodes', function () {
|
||||
// Cloud disallows setting custom node attributes, so we can't use `NODE_CUSTOM_ATTRIBUTE`
|
||||
// to retrieve the IDs we expect.
|
||||
this.tags(['skipCloud']);
|
||||
|
||||
describe('list', () => {
|
||||
it('should return the list of ES node for each custom attributes', async () => {
|
||||
const nodeStats = await getNodesStats();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue