vaadin / quarkus

An extension to Quarkus to support Vaadin Flow
Apache License 2.0
28 stars 3 forks source link

IT tests are lacking snapshots on failure #23

Closed denis-anisimov closed 2 years ago

denis-anisimov commented 2 years ago

Quarkus ITs are based on Junit5 which doesn't support @Rules. The ScreenshotOnFailureRule object which is used in the base abstract test for quarkus ITs doesn't do anything since it's Junit 4 Rule (and as said above the test is executed using Junit5 without Rules support).

As a result : if test is failing there is no any way to check what's going on there.

The screenshots support should be done for quarkus ITs using Juni5 API somehow.