Test-slowness anti-pattern surfaced by test-prof: a Factory builds one entity that references another that references another, so each test implicitly constructs the entire domain graph. Mitigations include removing associations from factories, making them optional, creating relation-free variants, and using create_default to reuse an already-created object instead of rebuilding it.