You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 29, 2019. It is now read-only.
describe('accordion-heading, with repeating accordion-groups',function(){
288
310
it('should clone the accordion-heading for each group',function(){
289
311
element=$compile('<accordion><accordion-group ng-repeat="x in [1,2,3]"><accordion-heading>{{x}}</accordion-heading></accordion-group></accordion>')(scope);
@@ -295,5 +317,19 @@ describe('accordion', function () {
295
317
expect(findGroupLink(2).text()).toBe('3');
296
318
});
297
319
});
320
+
321
+
322
+
describe('accordion-heading attribute, with repeating accordion-groups',function(){
323
+
it('should clone the accordion-heading for each group',function(){
324
+
element=$compile('<accordion><accordion-group ng-repeat="x in [1,2,3]"><div accordion-heading>{{x}}</div></accordion-group></accordion>')(scope);
0 commit comments