Skip to content

Commit

Permalink
Remove console statements in tests (#5211)
Browse files Browse the repository at this point in the history
  • Loading branch information
sroy3 authored Jan 18, 2024
1 parent 7567858 commit 5e6e197
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ describe('ComparisonTableHeader', () => {
const renderHeader = (props = fullProps) =>
render(
<Provider store={store}>
<ComparisonTableHeader {...props} />
<table>
<thead>
<tr>
<ComparisonTableHeader {...props} />
</tr>
</thead>
</table>
</Provider>
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ describe('ComparisonTableRow', () => {
})}
>
<table>
<tbody>
<ComparisonTableRow {...props} />
</tbody>
<ComparisonTableRow {...props} />
</table>
</Provider>
)
Expand Down

0 comments on commit 5e6e197

Please sign in to comment.