Open sdelamo opened 8 months ago
@dstepanov
Remove by default “transaction=true” from @MicronautTest and require @Transactional annotation on the test class / method like Spring https://docs.spring.io/spring-framework/reference/testing/testcontext-framework/tx.html (This will drop support for running all tests in one TX)
this will break a lot of code
Can we at least be able to turn this off for the whole project in config? I tried to find such config, but currently, I am just writing all annotations with transaction=false
transaction=false
@dstepanov