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> |
1✔ |
3 |
<e-text-field |
1✔ |
4 |
v-model="localMaterialList.name"
|
1✔ |
5 |
:name="$tc('entity.materialList.fields.name')"
|
1✔ |
6 |
autofocus |
1✔ |
7 |
vee-rules="required"
|
1✔ |
8 |
/> |
1✔ |
9 |
</div> |
1✔ |
10 |
</template>
|
1✔ |
11 |
|
1✔ |
12 |
<script> |
1✔ |
13 |
export default { |
1✔ |
14 |
name: 'DialogMaterialListForm', |
1✔ |
15 |
props: { |
1✔ |
16 |
materialList: { type: Object, required: true }, |
1✔ |
17 |
}, |
1✔ |
18 |
computed: {
|
1✔ |
UNCOV
19
|
localMaterialList() { |
× |
UNCOV
20
|
return this.materialList |
× |
UNCOV
21
|
}, |
× |
22 |
}, |
1✔ |
23 |
} |
1✔ |
24 |
</script> |
1✔ |