github
175 of 251 branches covered (0.0%)
Branch coverage included in aggregate %.
2387 of 2714 new or added lines in 11 files covered. (87.95%)
10 existing lines in 2 files now uncovered.6052 of 6753 relevant lines covered (89.62%)
3.55 hits per line
1 |
import BaseCard from '../base'; |
3✔ |
2 |
import { CardContent } from '../types'; |
3✔ |
3 |
|
3✔ |
4 |
export const ContentRightCard: React.FC<CardContent> = ({ |
3✔ |
UNCOV
5
|
children, |
× |
UNCOV
6
|
...rest |
× |
UNCOV
7
|
}) => { |
× |
UNCOV
8
|
return (
|
× |
UNCOV
9
|
<BaseCard contentPosition="end" {...rest}>
|
× |
UNCOV
10
|
{children} |
× |
UNCOV
11
|
</BaseCard> |
× |
UNCOV
12
|
); |
× |
UNCOV
13
|
}; |
× |
14 |
|
3✔ |
15 |
export default ContentRightCard; |
3✔ |