What tool (small) can we use to visualize a graphical test result?
Actually, I would like to display a graphic instead of this test (for example):
Finished in 3.44 seconds 5 examples, 0 failures
Maybe, for example, the JS graph, where each tested test can be red ...
Thanks.
If you use a continuous integration tool like Hudson, you can display glitches over time.
Well rspec comes with html format. you can just pass the parameter to the command line, for example
rspec -f html -o index.html
You can also inherit the RSpec formatter to write your own formatter.
You may be looking for fuubar , this is not JS, but it shows a good progress bar in colors. I also use it to get an overview of tests for passing or failing.