Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 0c6fb66

Browse files
committed
test(ngRepeat): fix IE8 test compatibility issue
1 parent 8073940 commit 0c6fb66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ng/directive/ngRepeatSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -527,13 +527,13 @@ describe('ngRepeat', function() {
527527
inject(function($templateCache, $compile, $rootScope) {
528528
$compileProvider.directive('replaceMeWithRepeater', function() {
529529
return {
530-
restrict: 'E',
530+
restrict: 'A',
531531
replace: true,
532532
templateUrl: 'replace-me-with-repeater.html'
533533
};
534534
});
535535
$templateCache.put('replace-me-with-repeater.html', '<div ng-repeat="i in [1,2,3]">{{i}}</div>');
536-
element = $compile('<div><replace-me-with-repeater></replace-me-with-repeater></div>')($rootScope);
536+
element = $compile('<div><div replace-me-with-repeater></div></div>')($rootScope);
537537
expect(element.text()).toBe('');
538538
$rootScope.$apply();
539539
expect(element.text()).toBe('123');

0 commit comments

Comments
 (0)