From b5857c00071b6bec819f7814ca7389805b393c9c Mon Sep 17 00:00:00 2001 From: Philip Carneiro Date: Tue, 29 Oct 2024 11:05:09 +0000 Subject: [PATCH] fix coverage --- src/webview/components/kdbNewConnectionView.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/webview/components/kdbNewConnectionView.ts b/src/webview/components/kdbNewConnectionView.ts index 55e91abf..b28b4316 100644 --- a/src/webview/components/kdbNewConnectionView.ts +++ b/src/webview/components/kdbNewConnectionView.ts @@ -178,6 +178,7 @@ export class KdbNewConnectionView extends LitElement { >`; } + /* istanbul ignore next */ renderServerNameField(serverType: ServerType, isBundleQ?: boolean) { return isBundleQ ? html` @@ -433,7 +440,9 @@ export class KdbNewConnectionView extends LitElement { id="label-color" value="${live(this.newLblColorName)}" @sl-change="${(event: Event) => { + /* istanbul ignore next */ this.newLblColorName = (event.target as HTMLInputElement).value; + /* istanbul ignore next */ this.requestUpdate(); }}" class="dropdown" @@ -515,6 +524,7 @@ export class KdbNewConnectionView extends LitElement { `; } + /* istanbul ignore next */ renderNewMyQConnectionForm() { return html`
@@ -596,6 +606,7 @@ export class KdbNewConnectionView extends LitElement { Bundle qMy q @@ -676,6 +689,7 @@ export class KdbNewConnectionView extends LitElement { this.selectedTab === ConnectionType.Insights, )}" @click="${() => { + /* istanbul ignore next */ this.selectedTab = ConnectionType.Insights; }}" >Insights connection