');
       expect(root.append('text')).toEqual(root);
       expect(root.html()).toEqual('text');
@@ -710,18 +710,18 @@ describe('jqLite', function(){
     });
   });
 
-  describe('prepend', function(){
-    it('should prepend to empty', function(){
+  describe('prepend', function() {
+    it('should prepend to empty', function() {
       var root = jqLite('
');
       expect(root.prepend('
abc')).toEqual(root);
       expect(root.html().toLowerCase()).toEqual('
abc');
     });
-    it('should prepend to content', function(){
+    it('should prepend to content', function() {
       var root = jqLite('
text
');
       expect(root.prepend('
abc')).toEqual(root);
       expect(root.html().toLowerCase()).toEqual('
abctext');
     });
-    it('should prepend text to content', function(){
+    it('should prepend text to content', function() {
       var root = jqLite('
text
');
       expect(root.prepend('abc')).toEqual(root);
       expect(root.html().toLowerCase()).toEqual('abctext');
@@ -729,8 +729,8 @@ describe('jqLite', function(){
   });
 
 
-  describe('remove', function(){
-    it('should remove', function(){
+  describe('remove', function() {
+    it('should remove', function() {
       var root = jqLite('
abc
');
       var span = root.find('span');
       expect(span.remove()).toEqual(span);
@@ -739,8 +739,8 @@ describe('jqLite', function(){
   });
 
 
-  describe('after', function(){
-    it('should after', function(){
+  describe('after', function() {
+    it('should after', function() {
       var root = jqLite('
');
       var span = root.find('span');
       expect(span.after('
')).toEqual(span);
@@ -748,7 +748,7 @@ describe('jqLite', function(){
     });
 
 
-    it('should allow taking text', function(){
+    it('should allow taking text', function() {
       var root = jqLite('
');
       var span = root.find('span');
       span.after('abc');
@@ -757,8 +757,8 @@ describe('jqLite', function(){
   });
 
 
-  describe('parent', function(){
-    it('should return parent or an empty set when no parent', function(){
+  describe('parent', function() {
+    it('should return parent or an empty set when no parent', function() {
       var parent = jqLite('
'),
           child = parent.find('p');
 
@@ -790,7 +790,7 @@ describe('jqLite', function(){
 
 
   describe('next', function() {
-    it('should return next sibling', function(){
+    it('should return next sibling', function() {
       var element = jqLite('
bi
');
       var b = element.find('b');
       var i = element.find('i');
@@ -800,7 +800,7 @@ describe('jqLite', function(){
 
 
   describe('find', function() {
-    it('should find child by name', function(){
+    it('should find child by name', function() {
       var root = jqLite('
');
       var innerDiv = root.find('div');
       expect(innerDiv.length).toEqual(1);
-- 
cgit v1.2.3