It would be nice to have timeout support, ideally configurable per test. Default could stay infinite as not to change the current behaviour. Without timeouts a bad test could leave the whole runner hanging which is not a good idea, specially for automated CI integration.
prova.setTimeout(ms) // Applies to all tests,
t.setTimeout(ms) // Overrides the default timeout for a particular test.
It would be nice to have timeout support, ideally configurable per test. Default could stay infinite as not to change the current behaviour. Without timeouts a bad test could leave the whole runner hanging which is not a good idea, specially for automated CI integration.