pub trait SupervisorOverride {
// Required method
fn should_spawn_supervisor(&self) -> bool;
}
Expand description
An internal trait that can be implemented by test cases to override whether to automatically spawn the relayer supervisor before the test starts.
This is used by RunWithSupervisor
to determine whether to
spawn the relayer.
Test writers should implement
TestOverrides
for their test cases instead of implementing this trait directly.