Преглед на файлове

Wasting a minute or two trying to whitespace my test consistent to the other tests

David Asabina преди 11 години
родител
ревизия
2bfce75836
променени са 1 файла, в които са добавени 6 реда и са изтрити 1 реда
  1. 6 1
      tests/automated/buttonText.js

+ 6 - 1
tests/automated/buttonText.js

@@ -1,4 +1,3 @@
-
 describe('button text', function() {
 describe('button text', function() {
 
 
   var settings = {};
   var settings = {};
@@ -15,6 +14,7 @@ describe('button text', function() {
   });
   });
 
 
   describe('with buttonIcons', function() {
   describe('with buttonIcons', function() {
+
     describe('when lang is default', function() {
     describe('when lang is default', function() {
       it('should have no text', function() {
       it('should have no text', function() {
         expect($('.fc-button-next')).toHaveText('');
         expect($('.fc-button-next')).toHaveText('');
@@ -57,7 +57,9 @@ describe('button text', function() {
       });
       });
     });
     });
   });
   });
+
   describe('without buttonIcons', function() {
   describe('without buttonIcons', function() {
+
     beforeEach(function() {
     beforeEach(function() {
       settings.buttonIcons = {
       settings.buttonIcons = {
         prev: null,
         prev: null,
@@ -68,6 +70,7 @@ describe('button text', function() {
     });
     });
 
 
     describe('when lang is default', function() {
     describe('when lang is default', function() {
+
       beforeEach(function() {
       beforeEach(function() {
         $('#cal').fullCalendar(settings);
         $('#cal').fullCalendar(settings);
       });
       });
@@ -91,6 +94,7 @@ describe('button text', function() {
     });
     });
 
 
     describe('when buttonText is specified', function() {
     describe('when buttonText is specified', function() {
+
       beforeEach(function() {
       beforeEach(function() {
         settings.buttonText = {
         settings.buttonText = {
           prev: '<-',
           prev: '<-',
@@ -143,4 +147,5 @@ describe('button text', function() {
       });
       });
     });
     });
   });
   });
+
 });
 });