The results/errors in beforeAll()
and afterAll()
are currently added to respectively the first and last test. In our case quite a lot already happens in these methods. If an error occurs in e.g. the beforeAll
method, it looks like the first test has failed, while in fact the test hasn't even started.
Is it somehow possible (using a custom reporter?) to report them separately? This would make debugging and resolving issues much easier for us.