Skip to content

Commit

Permalink
Show running test name
Browse files Browse the repository at this point in the history
  • Loading branch information
sarathms committed Jun 29, 2020
1 parent 4cce08b commit ae19b5d
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions renderer/components/home/running.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,23 +142,20 @@ const RunningTest = ({
</CloseButtonContainer>
)}
<Heading h={2}>{testGroup.name}</Heading>
<Heading h={3}>
{stopping ? (
<FormattedMessage
id='Dashboard.Running.Stopping.Title'
values={{
TestName
}}
/>
):(
<FormattedMessage
id='Dashboard.Running.Running'
values={{
TestName
}}
/>
)}
</Heading>
{stopping ? (
<Heading h={3}>
<FormattedMessage id='Dashboard.Running.Stopping.Title' />
</Heading>
):(
<Flex flexDirection='column'>
<Heading h={3}>
<FormattedMessage id='Dashboard.Running.Running' />
</Heading>
<Text fontSize={4}>
{TestName}
</Text>
</Flex>
)}
{!logOpen && lottieOptions.animationData && (
<Lottie
width={300}
Expand Down

0 comments on commit ae19b5d

Please sign in to comment.