chore: Switch coverage from istanbul to the v8 provider for speed (#2619)

This commit is contained in:
Dermot Duffy
2026-07-26 14:21:27 -07:00
committed by GitHub
parent 3b8835ee7c
commit ababe133a8
32 changed files with 128 additions and 275 deletions
+6 -1
View File
@@ -171,9 +171,14 @@ export const actionHandler = directive(
return noChange;
}
// istanbul ignore next -- @preserve Required by Lit Directive API but never called (update() is used instead)
// Required by Lit Directive API but never called (update() is used instead).
// The start/stop form of the coverage hint is used because the `next` form
// applies to whatever immediately follows the comment, which here is
// another comment.
/* v8 ignore start -- @preserve */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
render(_options?: AdvancedCameraCardActionHandlerOptions) {}
/* v8 ignore stop -- @preserve */
},
);