Flavio A.
Results
1
comments of
Flavio A.
I think in this case you'd want to have something like this: ```elixir def parent_factory do build(:parent_without_children, children: [build(:child_without_parent)]) end def parent_without_children_factory do %Parent{ unique_name: "John" } end def child_factory...