Using Envers within a Spring @Transactional test

I would like to test some functionality in my codebase in an end-end spring @transactional test. Sadly, the functionality involves testing envers - because the code in question looks up the audit table.

Of course, envers doesn’t run during a transaction, only at the end - is there some way I can tweak or trick envers into firing during a transaction, at some set time?