| 141 | let wc; |
| 142 | let input; |
| 143 | class TestWebComponent extends HTMLElement { |
| 144 | constructor() { |
| 145 | super(); |
| 146 | } |
| 147 | |
| 148 | connectedCallback() { |
| 149 | this.attachShadow({ |
| 150 | mode: "open" |
| 151 | }); |
| 152 | this.style.display = "block"; |
| 153 | this.style.width = "100px"; |
| 154 | this.style.height = "25px"; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | const registerTestComponent = () => { |
| 159 | if (window.customElements.get("test-web-component")) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…