export function skipIf(condition: Condition): ITestClosures {
  const skip = judge(condition);
  return skip ? jests.skip : jests.base;
}