angular js tutorialを見ると、ジャスミン テストでリピーター (関数?) がどこから来ているのかわかりません。これはジャスミンですか、それとも角度のある構造ですか?
ページには要素に ng-repeat 属性がありますが、<li>
それがテストで「リピーター」への参照にどのように変換されるかわかりません
it('should be possible to control phone order via the drop down select box',
function() {
//let's narrow the dataset to make the test assertions shorter
input('query').enter('tablet');
//where does 'repeater' below come from?
expect(repeater('.phones li', 'Phone List').column('phone.name')).
toEqual(["Motorola XOOM\u2122 with Wi-Fi",
"MOTOROLA XOOM\u2122"]);
select('orderProp').option('Alphabetical');
expect(repeater('.phones li', 'Phone List').column('phone.name')).
toEqual(["MOTOROLA XOOM\u2122",
"Motorola XOOM\u2122 with Wi-Fi"]);
});