角度js tutorialを見てみると、リピータ(機能?)がジャスミンテストのどこから来るのか分かりません。これはジャスミンか角張った構造ですか?この角度チュートリアルの「リピーター」はジャスミンのコンセプトですか?
ページは<li>
要素でNGリピート属性を持っている - しかし、私はそれがテスト
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"]);
});