Skip to content

Commit

Permalink
added
Browse files Browse the repository at this point in the history
  • Loading branch information
Sai Medhini Reddy Maryada authored and Sai Medhini Reddy Maryada committed Aug 29, 2024
1 parent cffa64c commit cd262ce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions public/pages/workflow_detail/workflow_detail.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ describe('WorkflowDetail', () => {
test('renders the page with a div element', () => {
const { container } = renderWithRouter(); // Render the component

// Log the full rendered HTML
console.log("Rendered HTML:", container.innerHTML);

// Check if there's at least one div element in the rendered output
const divElements = container.querySelectorAll('div');
console.log("Div elements found:", divElements);
Expand All @@ -63,3 +66,4 @@ describe('WorkflowDetail', () => {
expect(divElements.length).toBeGreaterThan(0);
});
});

0 comments on commit cd262ce

Please sign in to comment.