github
56 of 145 branches covered (38.62%)
33 of 35 new or added lines in 5 files covered. (94.29%)
3395 existing lines in 78 files now uncovered.8588 of 20178 relevant lines covered (42.56%)
703.45 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
/* eslint-disable class-methods-use-this */
|
× |
UNCOV
3
|
|
× |
UNCOV
4
|
import { LsmbText } from "@/elements/lsmb-text"; |
× |
UNCOV
5
|
|
× |
UNCOV
6
|
export class LsmbPassword extends LsmbText { |
× |
UNCOV
7
|
_stdProps() { |
× |
8 |
return { type: "password" }; |
× |
UNCOV
9
|
} |
× |
UNCOV
10
|
|
× |
UNCOV
11
|
constructor() { |
× |
12 |
super();
|
× |
UNCOV
13
|
} |
× |
UNCOV
14
|
} |
× |
UNCOV
15
|
|
× |
16 |
customElements.define("lsmb-password", LsmbPassword);
|
× |