Skip to content

Commit

Permalink
Updated test to account for the fact that advanced settings will be v…
Browse files Browse the repository at this point in the history
…isible due to kibana permissions.
  • Loading branch information
John Dorlus committed Jun 18, 2021
1 parent 5d635a5 commit 4822b63
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('should render the "Ingest" section with ingest pipelines', async () => {
await PageObjects.common.navigateToApp('management');
const sections = await managementMenu.getSections();
expect(sections).to.have.length(1);
// We gave the ingest node pipelines user access to advanced settings to allow them to use ingest node pipelines.
// See https://github.com/elastic/kibana/pull/102409/
expect(sections).to.have.length(2);
expect(sections[0]).to.eql({
sectionId: 'ingest',
sectionLinks: ['ingest_pipelines'],
Expand Down

0 comments on commit 4822b63

Please sign in to comment.