Activate Job Executor on tests?

Hi,

I have an integrationtest in which I want to test the correct behaviour of my spring-boot-application that uses an embedded engine.
The process involved has Asynchronous Continuation active on two positions. Thus, if I understand camunda correctly, the Job Executor has to pick up the jobs related to those tasks and execute them.
But: the job executor seems to be disabled. If I start the jobs manually, it works. But they wont run “automatically”.
I tried to activate them with
camunda:
bpm:
job-execution:
enabled: true
in application.yml, but that does not seem to have any effect.

How do I activate the Job Executor in my tests? It is important to simulate the “real” behavior, since it´s an integration test.

Thx!