push
github
503 of 772 branches covered (0.0%)
34 of 65 new or added lines in 14 files covered. (52.31%)
13502 existing lines in 185 files now uncovered.9060 of 34265 relevant lines covered (26.44%)
11.53 hits per line
UNCOV
1
|
<!-- |
|
UNCOV
2
|
Displays a single activity |
× |
UNCOV
3
|
--> |
× |
UNCOV
4
|
|
× |
5 |
<template>
|
× |
UNCOV
6
|
<v-container fluid> |
× |
UNCOV
7
|
<ScheduleEntry :key="scheduleEntry()._meta.self" :schedule-entry="scheduleEntry" /> |
× |
UNCOV
8
|
</v-container> |
× |
UNCOV
9
|
</template>
|
× |
UNCOV
10
|
|
× |
UNCOV
11
|
<script> |
× |
UNCOV
12
|
import ScheduleEntry from '@/components/activity/ScheduleEntry.vue' |
× |
UNCOV
13
|
|
× |
UNCOV
14
|
export default { |
× |
UNCOV
15
|
name: 'Activity', |
× |
UNCOV
16
|
components: { |
× |
UNCOV
17
|
ScheduleEntry, |
× |
UNCOV
18
|
}, |
× |
UNCOV
19
|
|
× |
UNCOV
20
|
props: {
|
× |
UNCOV
21
|
scheduleEntry: {
|
× |
UNCOV
22
|
type: Function,
|
× |
UNCOV
23
|
required: true,
|
× |
UNCOV
24
|
}, |
× |
UNCOV
25
|
}, |
× |
UNCOV
26
|
} |
× |
UNCOV
27
|
</script> |
× |