From 2d45a8e36985451e293918ba5bea161b5f338581 Mon Sep 17 00:00:00 2001 From: Paulo Henrique Date: Mon, 2 Dec 2024 20:46:22 -0800 Subject: [PATCH] removing asset inventory from graph --- .../functional/apps/graph/feature_controls/graph_security.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts b/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts index bd1b5f49901f5..1f2c2643fb8d1 100644 --- a/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts +++ b/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts @@ -68,7 +68,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { it('shows graph navlink', async () => { const navLinks = await appsMenu.readLinks(); - expect(navLinks.map((link) => link.text)).to.eql(['Graph', 'assetInventory']); + expect(navLinks.map((link) => link.text)).to.eql(['Graph']); }); it('landing page shows "Create new graph" button', async () => { @@ -129,7 +129,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) { it('shows graph navlink', async () => { const navLinks = (await appsMenu.readLinks()).map((link) => link.text); - expect(navLinks).to.eql(['Graph', 'assetInventory']); + expect(navLinks).to.eql(['Graph']); }); it('does not show a "Create new Workspace" button', async () => {