This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
Tag Support for Mocha, Fixes to Existing Tag Support
- The
--tags
option now supports mocha suites. The README has been updated with details on how to use this support. - The existing
--tags
feature had a bug that would cause tag filtering to function as anOR
instead of anAND
. When using--tags=t1,t2,t3
, matching tests need to satisfyt1 AND t2 AND t3
to satisfy the filter. Existing test suites may be using magellan assuming this is the case, so this release qualifies as a breaking release.