I want to use JUnit5 for tests but looks like @ScenarioTest is not yet implemented.
<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.2.0</version>
    <scope>test</scope>
</dependency>
How I can run tests in strict order?
 
    