| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Test.Tasty.Focus
Description
Simple focus mechanism for tasty, similar to hspec.
Mark the root of your test tree with withFocus.
Then, if any of the subtrees of your test suite are marked with focus, only those test trees will be run.
main = defaultMain .withFocus$ testGroup "tests" [ fooTests , testGroup "subgroup" [focusbarTests , bazTests ] , quuxTests ]