Adds tests with array sorted.

This commit is contained in:
gaba
2016-11-04 10:19:42 -07:00
parent 5a2c3b2077
commit 53453644a3
+4
View File
@@ -35,6 +35,10 @@ describe('Comment: models', () => {
it('should find an array of comments by asset id', () => {
return Comment.findByAssetId('123').then((result) => {
expect(result).to.have.length(2);
expect(result.sort()[0]).to.have.property('body')
.and.to.equal('comment 10');
expect(result.sort()[1]).to.have.property('body')
.and.to.equal('comment 20');
});
});
});