我正在为 Backbone.Collection 编写规范。
我想使用 jasmine 在单元测试 javascript 中检查以下语句:
should the models be ordered by starting with the most recent.
模型中要检查的关键值是id
(整数)。
例如,如果集合如下所示,则对其进行排序:
[
{id: 5, ….}, // the most recent
{id: 2, ...},
{id: 1, ...}
]
我的问题是:
1)有没有茉莉花方法来做这种检查?
2)如果没有,用javascript制作它的最佳方法是什么?也许使用一些像下划线这样的库。