Não é possível disparar animação em ngRepeat aninhado

Não consigo descobrir como acionar animações em um ngRepeat aninhado com Angular.

A classe CSS ".test" é animada. Ao usar ".test" no ngRepeat interno, ele não funciona (Plunker):

<div ng-repeat="section in sections">
  <div ng-repeat="item in section.items" class="test">
    <h2>{{item.title}}</h2>
  </div>
</div>

Ao usar ".test" no ngRepeat externo, ele funciona (Plunker):

<div ng-repeat="section in sections">
  <div ng-repeat="item in section.items" class="test">
    <h2>{{item.title}}</h2>
  </div>
</div>