All files / app/src/features/validator/validate-object-pipe/lib validate-for-state.ts

25% Statements 1/4
100% Branches 0/0
0% Functions 0/1
25% Lines 1/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 51x        
export const validateForState = (states: string[], pipeState?: string) => {
  if (!pipeState) return false
  return states.includes(pipeState)
}