Skip to content

Commit

Permalink
removing asset inventory from graph
Browse files Browse the repository at this point in the history
  • Loading branch information
opauloh committed Dec 3, 2024
1 parent 2a4bb6a commit 2d45a8e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down Expand Up @@ -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 () => {
Expand Down

0 comments on commit 2d45a8e

Please sign in to comment.