push
github
72 of 100 branches covered (72.0%)
Branch coverage included in aggregate %.
54 of 648 new or added lines in 27 files covered. (8.33%)
54 existing lines in 21 files now uncovered.405 of 1642 relevant lines covered (24.67%)
8.88 hits per line
1 |
import StoryHeaderComponent from './story-header.jsx'; |
|
2 |
import StoryEditorComponent from './story-editor.jsx'; |
× |
3 |
|
|
4 |
class StoryComponent { |
× |
NEW
|
view({ attrs: { app, story } }) {
|
× |
NEW
|
return (
|
× |
NEW
|
<div className="story">
|
× |
NEW
|
<StoryHeaderComponent app={app} story={story} /> |
× |
NEW
|
<StoryEditorComponent story={story} /> |
× |
NEW
|
</div> |
× |
11 |
); |
|
UNCOV
12
|
} |
× |
UNCOV
13
|
} |
× |
14 |
|
|
15 |
export default StoryComponent; |
× |