github
176 of 252 branches covered (0.0%)
Branch coverage included in aggregate %.
2397 of 2728 new or added lines in 11 files covered. (87.87%)
10 existing lines in 2 files now uncovered.6059 of 6764 relevant lines covered (89.58%)
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✔ |