tasty-html alternatives and similar packages
Based on the "tasty" category.
Alternatively, view tasty-html alternatives based on common mentions on social networks and blogs.
-
tasty-hedgehog
Tasty integration for the Hedgehog property testing library -
tasty-expected-failure
Mark test cases as expected-failure -
tasty-rerun
Rerun previous test suite runs to run only failing tests -
tasty-test-reporter
An ingredient for tasty that prints a summary and outputs junit xml that works with jenkins. -
tasty-ant-xml
A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework. -
tasty-jenkins-xml
Render tasty output to XML for Jenkins in addition to other (console) output -
tasty-th
Automatically generate tasty test groups from functions in a module using TH -
tasty-silver
A fancy test runner for tasty and support for golden tests. -
tasty-auto
Deprecated: Auto discovery for the Tasty test framework, use tasty-discover instead -
tasty-leancheck
LeanCheck support for the Tasty test framework (Haskell) -
tasty-program
Use tasty framework to test whether a program executes correctly
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of tasty-html or a related project?
README
tasty-html
HTML test reporter for the Tasty test framework.
Example
Here's how your test.hs
might look like:
import Test.Tasty
import Test.Tasty.SmallCheck as SC
import Test.Tasty.QuickCheck as QC
import Test.Tasty.HUnit
import Test.Tasty.Runners.Html
import Data.List
import Data.Ord
main = defaultMainWithIngredients (htmlRunner:defaultIngredients) tests
tests :: TestTree
tests = testGroup "Tests" [properties, unitTests]
properties :: TestTree
properties = testGroup "Properties" [scProps, qcProps]
scProps = testGroup "(checked by SmallCheck)"
[ SC.testProperty "sort == sort . reverse" $
\list -> sort (list :: [Int]) == sort (reverse list)
, SC.testProperty "Fermat's little theorem" $
\x -> ((x :: Integer)^7 - x) `mod` 7 == 0
-- the following property does not hold
, SC.testProperty "Fermat's last theorem" $
\x y z n ->
(n :: Integer) >= 3 SC.==> x^n + y^n /= (z^n :: Integer)
]
qcProps = testGroup "(checked by QuickCheck)"
[ QC.testProperty "sort == sort . reverse" $
\list -> sort (list :: [Int]) == sort (reverse list)
, QC.testProperty "Fermat's little theorem" $
\x -> ((x :: Integer)^7 - x) `mod` 7 == 0
-- the following property does not hold
, QC.testProperty "Fermat's last theorem" $
\x y z n ->
(n :: Integer) >= 3 QC.==> x^n + y^n /= (z^n :: Integer)
]
unitTests = testGroup "Unit tests"
[ testCase "List comparison (different length)" $
[1, 2, 3] `compare` [1,2] @?= GT
-- the following test does not hold
, testCase "List comparison (same length)" $
[1, 2, 3] `compare` [1,2,2] @?= LT
]
To produce the HTML output, run the test program with the --html
option,
giving it the html file path:
./test --html results.html
Here is the output of the above program rendered to HTML:
(Note that whether QuickCheck finds a counterexample to the third property is determined by chance.)
Hacking
When cloning this repository use --recursive
parameter to checkout the git
submodule pointing to the bootstrap
fork being used by tasty-html
.
$ git clone --recursive https://github.com/feuerbach/tasty-html
Making changes to the bootstrap
fork is the same procedure followed by the
upstream project.
$ cd data/bootstrap
$ npm install
You might change the style by editing the less
files. Once you are done, use
grunt
to compile the css
files:
$ grunt dist
This assumes you have grunt-cli
installed globally, either with npm
(npm
install -g grunt-cli
) or from a package manager if available.
Consider submitting your changes as pull requests to the tasty-html
bootstrap
fork at https://github.com/jdnavarro/bootstrap.