BUG: Testes feitos incorretamente
Aparentemente a linha
expect(optimalView.childViews.length === 1)
se o valor for falso não é o suficiente para falhar um test e o ideal seria
expect(optimalView.childViews.length === 1).to.be.true
ou
expect(optimalView.childViews).to.have.length(1)
Subistituir os testes incorretos e corrigir suas falhas caso falhem