Skip to content

Commit

Permalink
linting again...
Browse files Browse the repository at this point in the history
  • Loading branch information
360dgries committed Oct 2, 2023
1 parent 4c6db4b commit 2939c12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const TestGroupCard: FC<TestGroupCardProps> = ({ children, runnable, runTests, v
// render markdown once on mount - it's too slow with re-rendering
const description = useMemo(() => {
return runnable.description ? (
<ReactMarkdown remarkPlugins={[remarkGfm]}>{runnable.description}</ReactMarkdown>
) : undefined;
<ReactMarkdown remarkPlugins={[remarkGfm]}>{runnable.description}</ReactMarkdown>
) : undefined;
}, [runnable.description]);

const runnableType = 'tests' in runnable ? RunnableType.TestGroup : RunnableType.TestSuite;
Expand Down

0 comments on commit 2939c12

Please sign in to comment.