Version 0.2.5
- Changes in tagit functions: boolean selector
Now you can enable or disable tests based on a boolean attribute of the
variant.
Also, now the recommended way of using it is:
variants.forEach((variant) => {
const it = (testDescription, test) => tagitVariant(variant, false, testDescription, test);
it.only = (testDescription, test) => tagitVariant(variant, true, testDescription, test);And later you use it(...)
Full Changelog: v0.2.4...v0.2.5