feat: Add nested search in folders (#14372)

Co-authored-by: Milorad FIlipović <milorad@n8n.io>
This commit is contained in:
Ricardo Espinoza
2025-04-11 19:17:28 -04:00
committed by GitHub
parent f38bd84fd1
commit cade309d3b
13 changed files with 354 additions and 46 deletions

View File

@@ -118,7 +118,9 @@ describe('WorkflowCard', () => {
name: projectName,
},
});
const { getByRole, getByTestId } = renderComponent({ props: { data } });
const { getByRole, getByTestId } = renderComponent({
props: { data, showOwnershipBadge: true },
});
const heading = getByRole('heading');
const badge = getByTestId('card-badge');
@@ -134,7 +136,9 @@ describe('WorkflowCard', () => {
name: projectName,
},
});
const { getByRole, getByTestId } = renderComponent({ props: { data } });
const { getByRole, getByTestId } = renderComponent({
props: { data, showOwnershipBadge: true },
});
const heading = getByRole('heading');
const badge = getByTestId('card-badge');