Skip to content

Version 0.2.5

Choose a tag to compare

@gnarvaja gnarvaja released this 27 Mar 17:56
· 31 commits to main since this release
  • 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