Remove expect from application code

This commit is contained in:
Adam Chalmers
2025-01-21 08:45:42 -06:00
committed by Nick Cameron
parent 2559309f85
commit 8e343a254f

View File

@ -430,7 +430,6 @@ export function getNodePathFromSourceRange(
previousPath: PathToNode = [['body', '']]
): PathToNode {
const [start, end] = sourceRange || []
expect(start).toBeGreaterThan(-1)
let path: PathToNode = [...previousPath]
const _node = { ...node }