Adam Shaw 9 лет назад
Родитель
Сommit
b705f1c044
2 измененных файлов с 4 добавлено и 4 удалено
  1. 2 2
      tests/automated/moment-construct.js
  2. 2 2
      tests/automated/moment-query.js

+ 2 - 2
tests/automated/moment-construct.js

@@ -1,4 +1,4 @@
-(function() {
+describe('moment constructor', function() {
 
 describe('$.fullCalendar.moment', function() {
 	testDefaultProcessing($.fullCalendar.moment);
@@ -660,4 +660,4 @@ function testLiteralProcessing(construct) {
 	});
 }
 
-})();
+});

+ 2 - 2
tests/automated/moment-query.js

@@ -1,5 +1,5 @@
 
-(function() {
+describe('querying', function() {
 
 	var momentTypeSuffixes = {
 		'ambiguously-timed': '',
@@ -197,4 +197,4 @@
 		});
 	});
 
-})();
+});