Files
gyehoek-hs/test/Gyehoek/TestUtil.hs
T
msyds 73063d2b2c
build / build (push) Failing after 1m36s
parse meta vars
2026-08-22 18:05:35 -06:00

12 lines
305 B
Haskell

module Gyehoek.TestUtil
( markIfBroken
) where
import Test.Tasty.ExpectedFailure (expectFail)
import Data.Function
import Test.Tasty (TestTree)
markIfBroken :: Foldable f => String -> f String -> TestTree -> TestTree
markIfBroken name brokenTests = applyWhen (name `elem` brokenTests) expectFail