Skip to content

Commit

Permalink
fix(KFLUXUI-278): update testcase for breadcrumbs link
Browse files Browse the repository at this point in the history
  • Loading branch information
rakshett committed Jan 21, 2025
1 parent 91b58a5 commit 033aaa6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ describe('ReleasePlanForm', () => {
expect(result.getByRole('checkbox', { name: 'Auto release' })).toBeVisible();
expect(result.getByRole('checkbox', { name: 'Standing attribution' })).toBeVisible();
expect(result.getByRole('textbox', { name: 'Release plan name' })).toBeVisible();
const breadcrumbLink = result.getByRole('link', { name: /release/i });
expect(breadcrumbLink).toHaveAttribute('href', '/workspaces/test-ws/release');
});

it('should show edit form if edit flag is provided', () => {
Expand Down

0 comments on commit 033aaa6

Please sign in to comment.