Skip to content

Commit 2a8180f

Browse files
committed
Coverage
1 parent 726b4ba commit 2a8180f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utilities/findBreakingChanges.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ function findTypeChanges(
186186
type: BreakingChangeType.TYPE_REMOVED,
187187
description: isSpecifiedScalarType(oldType)
188188
? `Standard scalar ${oldType.name} was removed because it is not referenced anymore.`
189-
: isSpecifiedEnumType(oldType)
189+
: /* c8 ignore next 2 */
190+
isSpecifiedEnumType(oldType)
190191
? `Standard enum ${oldType.name} was removed because it is not referenced anymore.`
191192
: `${oldType.name} was removed.`,
192193
});

0 commit comments

Comments
 (0)