Sometimes I forget to include the assembly which contains the handlers when running Integration Tests that involve Wolverine handlers.
hostBuilder.UseWolverine(
options =>
options
.Discovery
.IncludeAssembly(Assembly.GetAssembly(typeof(Program))!)
);