Skip to content

Commit

Permalink
test: ignore 2 lines for coverage that are just a safeguard
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Sep 29, 2023
1 parent 713cbb0 commit fb2734c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/language/helpers/checks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export const isStatic = (node: SdsClassMember): boolean => {
} else if (isSdsFunction(node)) {
return node.static;
} else {
/* c8 ignore next 2 */
return false;
}
};
Expand Down

0 comments on commit fb2734c

Please sign in to comment.