github
177 of 254 branches covered (0.0%)
Branch coverage included in aggregate %.
2406 of 2746 new or added lines in 11 files covered. (87.62%)
10 existing lines in 2 files now uncovered.6135 of 6921 relevant lines covered (88.64%)
3.52 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✔ |