目前我正在这样做:
expect( tasks.at(0).get('title') ).to.be('Root')
expect( tasks.at(0).get('next') ).to.be(true)
但似乎应该有更好的方法。我宁愿做这样的事情:
expect(tasks.at(0).attributes).to.eql({title:'Root', next:true})
但这不起作用,因为tasks.at(1).attributes
有许多其他属性,所以它不严格匹配。有任何想法吗?我可以使用除 expectjs 以外的东西。