We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f825bc commit bea0e4bCopy full SHA for bea0e4b
src/components/app/Report.tsx
@@ -17,7 +17,7 @@ export const Report: FC = () => {
17
<FilteredDocuments />
18
</section>
19
<section>
20
- <TestRunHooks/>
+ <TestRunHooks />
21
22
</article>
23
)
src/components/app/TestRunHooks.tsx
@@ -15,11 +15,7 @@ export const TestRunHooks: FC = () => {
15
<ol className={styles.hooks}>
16
{hooks.map(({ testRunHookFinished, hook }) => {
return (
- <TestRunHookOutcome
- key={hook.id}
- hook={hook}
- testRunHookFinished={testRunHookFinished}
- />
+ <TestRunHookOutcome key={hook.id} hook={hook} testRunHookFinished={testRunHookFinished} />
24
})}
25
</ol>
0 commit comments