push
github
200 of 269 branches covered (0.0%)
Branch coverage included in aggregate %.
291 of 373 new or added lines in 15 files covered. (78.02%)
1 existing line in 1 file now uncovered.7032 of 8291 relevant lines covered (84.81%)
3.86 hits per line
1 |
import { ReactNode } from 'react'; |
2✔ |
|
import { LiveMarketSlider } from './slider'; |
2✔ |
|
import { LiveMarketTab } from './tab'; |
2✔ |
4 |
|
2✔ |
|
type LiveMarketBlockType = { |
2✔ |
|
Slider: typeof LiveMarketSlider;
|
2✔ |
|
Tab: typeof LiveMarketTab;
|
2✔ |
|
}; |
2✔ |
9 |
|
2✔ |
|
export const LiveMarketBlock: LiveMarketBlockType = ({ |
2✔ |
NEW
|
children, |
× |
NEW
|
}: { |
× |
NEW
|
children: ReactNode;
|
× |
NEW
|
}) => { |
× |
NEW
|
return children;
|
× |
UNCOV
16
|
}; |
× |
17 |
|
2✔ |
|
LiveMarketBlock.Slider = LiveMarketSlider; |
2✔ |
|
LiveMarketBlock.Tab = LiveMarketTab; |
2✔ |
|
|
2✔ |
|
export default LiveMarketBlock; |
2✔ |