Skip to content

Commit 8e47f86

Browse files
committed
test: ignore coverage for untestable line
I'm not sure what the missing coverage is even about
1 parent 2ad39a1 commit 8e47f86

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/elements/Table.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ function sortKeysInOrderOf<Obj extends Record<string, unknown>>(
3636
): (obj: Obj) => Obj {
3737
return (obj: Obj) =>
3838
keys.reduce((bodyAccumulator, header) => {
39+
/* istanbul ignore next */
3940
const { [header]: _omitted, ...bodyWithoutHeader } = bodyAccumulator;
4041
return {
4142
...bodyWithoutHeader,

0 commit comments

Comments
 (0)