Tests based on Scala Specs2.
class MyTests {
trait Context {
...
}
"test number 1" should {
"render stuff amazingly" in new Context {
...validations...
}
}
Is there screenshot capture mechanism implemented in Specs2? Didn't found any mention of it in the official site nor here. If it's possible, would be happy to learn how to implement it.