Skip to content

Commit

Permalink
add assertions back
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo committed Feb 4, 2025
1 parent 7c8af83 commit 658bef7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/pages/library/WorkflowsLibrary.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ describe('Workflows Library', () => {

// discover workflows section
expect(screen.getByText('Discover Workflows')).toBeInTheDocument();
// Dockstore and Terra Workflow Repo card
expect(screen.getByText('Dockstore.org')).toBeInTheDocument();
expect(screen.getByText('Terra Workflow Repository')).toBeInTheDocument();

// curated workflows section
expect(screen.getByText('Curated collections from our community:')).toBeInTheDocument();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ describe('FindWorkflowModal', () => {
expect(screen.getByText('Find a workflow')).toBeInTheDocument();
// 'x' close button
expect(screen.getByLabelText('Close modal')).toBeInTheDocument();
// Dockstore card
// Dockstore and Terra Workflow Repo card
expect(screen.getByText('Dockstore.org')).toBeInTheDocument();
expect(screen.getByText('Terra Workflow Repository')).toBeInTheDocument();
// curated workflows section
expect(screen.getByText('GATK Best Practices')).toBeInTheDocument();
expect(screen.getByText('Long Read Pipelines')).toBeInTheDocument();
Expand Down

0 comments on commit 658bef7

Please sign in to comment.