UNPKG

enzyme

Version:

JavaScript Testing utilities for React

12 lines (11 loc) 266 B
/** * Simple wrapper around mocha describe which allows a boolean to be passed in first which * determines whether or not the test will be run */ export function describeIf(test, a, b) { if (test) { describe(a, b); } else { describe.skip(a, b); } }