Hi! Emmanuel Hayford here with some Rails codebase updates for you! Add #assert_events_reported test helper Rails added a new test helper that lets you assert multiple events were reported within a block— order-agnostic , with support for payload and tag matching, and it ignores extra events. Handy for workflows that emit several instrumentation events in one go. assert_events_reported([ { name: "user.created", payload: { id: 123 } }, { name: "email.sent", payload: { to: "user@example.com" ...