So one can write:
assertComponents(result.children, List( <.div()("Item #1"), <.div()("test 1") )) instead of:
inside(result.children.toList) { case List(child1, child2) => assertNativeComponent(child1, <.div()("Item #1")) assertNativeComponent(child2, <.div()("test 1")) }