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
|
<template>
|
|
UNCOV
2
|
<hr :aria-label="label" />
|
× |
UNCOV
3
|
</template>
|
× |
UNCOV
4
|
|
× |
UNCOV
5
|
<script> |
× |
UNCOV
6
|
export default { |
× |
UNCOV
7
|
name: 'HorizontalRule', |
× |
UNCOV
8
|
props: { |
× |
UNCOV
9
|
label: { type: String, required: true }, |
× |
UNCOV
10
|
}, |
× |
UNCOV
11
|
} |
× |
UNCOV
12
|
</script> |
× |
UNCOV
13
|
|
× |
UNCOV
14
|
<style lang="scss" scoped>
|
× |
UNCOV
15
|
hr { |
× |
UNCOV
16
|
border: none;
|
× |
UNCOV
17
|
border-top: 1px solid map-get($blue-grey, 'lighten-3'); |
× |
UNCOV
18
|
color: map-get($blue-grey, 'base'); |
× |
UNCOV
19
|
overflow: visible;
|
× |
UNCOV
20
|
text-align: center; |
× |
UNCOV
21
|
margin: 30px 0; |
× |
UNCOV
22
|
height: 1px; |
× |
UNCOV
23
|
&::after { |
× |
UNCOV
24
|
content: attr(aria-label);
|
× |
UNCOV
25
|
background: #fff; |
× |
UNCOV
26
|
padding: 0 4px; |
× |
UNCOV
27
|
position: relative;
|
× |
UNCOV
28
|
top: -0.75em; |
× |
UNCOV
29
|
} |
× |
UNCOV
30
|
} |
× |
UNCOV
31
|
</style> |
× |