uncomment failing test in current master
Showing
1 changed file
with
1 additions
and
2 deletions
... | @@ -152,7 +152,6 @@ describe('Functional', function() { | ... | @@ -152,7 +152,6 @@ describe('Functional', function() { |
152 | expect(el.getElementsByTagName('li')[0].className).toBe('bar'); | 152 | expect(el.getElementsByTagName('li')[0].className).toBe('bar'); |
153 | }); | 153 | }); |
154 | 154 | ||
155 | /* | ||
156 | it('should insert items between any surrounding elements', function(){ | 155 | it('should insert items between any surrounding elements', function(){ |
157 | firstItem = document.createElement('li'); | 156 | firstItem = document.createElement('li'); |
158 | lastItem = document.createElement('li'); | 157 | lastItem = document.createElement('li'); |
... | @@ -168,7 +167,7 @@ describe('Functional', function() { | ... | @@ -168,7 +167,7 @@ describe('Functional', function() { |
168 | expect(el.getElementsByTagName('li')[1]).toHaveTheTextContent('a'); | 167 | expect(el.getElementsByTagName('li')[1]).toHaveTheTextContent('a'); |
169 | expect(el.getElementsByTagName('li')[2]).toHaveTheTextContent('b'); | 168 | expect(el.getElementsByTagName('li')[2]).toHaveTheTextContent('b'); |
170 | expect(el.getElementsByTagName('li')[3]).toHaveTheTextContent('last'); | 169 | expect(el.getElementsByTagName('li')[3]).toHaveTheTextContent('last'); |
171 | })*/ | 170 | }) |
172 | 171 | ||
173 | }); | 172 | }); |
174 | }); | 173 | }); | ... | ... |
-
Please register or sign in to post a comment