Best way to test a story with `UserUtteranceReverted`

Hello!

I created some stories that depend on a custom action that delivers a UserUtteranceReverted event.

Is there any way to use test stories to test the paths that have these values? i.e.

stories:
  - story: Test custom action
    steps: 
      - user: |
          Do your thing!
      - intent: my_thing
      - action: action_with_revert
      - event: UserUtteranceReverted # <-- something similar
      - user: |
         Do your thing!
      - intent: my_thing
      - action: action_with_revert

This is testing the custom action, but ideally I would like to test more stories that use this action.