File size: 248 Bytes
1e92f2d | 1 2 3 4 5 6 | // These allow a conditional skip based on the parameter input.
export const skipItIf = ( conditional: boolean ) => ( conditional ? it.skip : it );
export const skipDescribeIf = ( conditional: boolean ) =>
conditional ? describe.skip : describe;
|