aboutsummaryrefslogtreecommitdiffstats
path: root/test/directivesSpec.js
diff options
context:
space:
mode:
authorMisko Hevery2010-07-22 15:32:57 -0700
committerMisko Hevery2010-07-22 15:32:57 -0700
commit2987f7f705baffad8081fc4a3a95eab79b0d9695 (patch)
tree95cbcdb3e0dbf39d00b266075f551be8ddd87e9f /test/directivesSpec.js
parent849a05b5a578f19ddc3d24dc9fbd304e0e07612a (diff)
downloadangular.js-2987f7f705baffad8081fc4a3a95eab79b0d9695.tar.bz2
fix howers which were accidently broken
Diffstat (limited to 'test/directivesSpec.js')
-rw-r--r--test/directivesSpec.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/directivesSpec.js b/test/directivesSpec.js
index dffc8906..8a7da41d 100644
--- a/test/directivesSpec.js
+++ b/test/directivesSpec.js
@@ -140,11 +140,6 @@ describe("directives", function(){
expect(element.text()).toEqual('misko:swe;shyam:set;');
});
- it('should set ng:repeat to [] if undefinde', function(){
- var scope = compile('<ul><li ng:repeat="item in items"></li></ul>');
- expect(scope.items).toEqual([]);
- });
-
it('should error on wrong parsing of ng:repeat', function(){
var scope = compile('<ul><li ng:repeat="i dont parse"></li></ul>');
var log = "";