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
1 |
<template>
|
1✔ |
2 |
<div class="e-form-container"> |
1✔ |
3 |
<slot /> |
1✔ |
4 |
</div> |
1✔ |
5 |
</template>
|
1✔ |
6 |
|
1✔ |
7 |
<script> |
1✔ |
8 |
export default { |
1✔ |
9 |
name: 'ApiForm', |
1✔ |
UNCOV
10
|
provide() { |
× |
UNCOV
11
|
return {
|
× |
UNCOV
12
|
apiUri: this.entity._meta.self, |
× |
UNCOV
13
|
} |
× |
UNCOV
14
|
}, |
× |
15 |
props: {
|
1✔ |
16 |
entity: { required: true, type: Object }, |
1✔ |
17 |
}, |
1✔ |
18 |
} |
1✔ |
19 |
</script> |
1✔ |