@@ -16,14 +16,14 @@ module.exports = function(grunt) {
16
16
return500 : {
17
17
options : {
18
18
port : 10921 ,
19
- middleware : function ( connect , options ) {
20
- return [ function ( req , res , next ) {
21
- res . statusCode = 500 ;
22
- res . end ( ) ;
23
- } ] ;
24
- }
19
+ middleware : function ( ) {
20
+ return [ function ( req , res ) {
21
+ res . statusCode = 500 ;
22
+ res . end ( ) ;
23
+ } ] ;
25
24
}
26
25
}
26
+ }
27
27
} ,
28
28
jshint : {
29
29
all : [
@@ -36,10 +36,10 @@ module.exports = function(grunt) {
36
36
jshintrc : '.jshintrc'
37
37
}
38
38
} ,
39
- watch : {
40
- dev : {
41
- files : [ 'tasks/**/*' ] ,
42
- tasks : [ 'jasmine:pivotal:build' ]
39
+ watch : {
40
+ dev : {
41
+ files : [ 'tasks/**/*' ] ,
42
+ tasks : [ 'jasmine:pivotal:build' ]
43
43
}
44
44
} ,
45
45
jasmine : {
@@ -54,10 +54,10 @@ module.exports = function(grunt) {
54
54
}
55
55
}
56
56
} ,
57
- phantom_polyfills : {
57
+ phantomPolyfills : {
58
58
src : 'test/fixtures/phantom-polyfills/src/**/*.js' ,
59
- options : {
60
- specs : 'test/fixtures/phantom-polyfills/spec/**/*.js' ,
59
+ options : {
60
+ specs : 'test/fixtures/phantom-polyfills/spec/**/*.js'
61
61
}
62
62
} ,
63
63
consoleDisplayOptions : {
@@ -66,7 +66,7 @@ module.exports = function(grunt) {
66
66
specs : 'test/fixtures/pivotal/spec/*Spec.js' ,
67
67
helpers : 'test/fixtures/pivotal/spec/*Helper.js' ,
68
68
display : 'short' ,
69
- summary : true ,
69
+ summary : true
70
70
}
71
71
} ,
72
72
consoleDisplayOptionsNone : {
@@ -75,7 +75,7 @@ module.exports = function(grunt) {
75
75
specs : 'test/fixtures/pivotal/spec/*Spec.js' ,
76
76
helpers : 'test/fixtures/pivotal/spec/*Helper.js' ,
77
77
display : 'none' ,
78
- summary : true ,
78
+ summary : true
79
79
}
80
80
} ,
81
81
deepOutfile : {
@@ -114,8 +114,8 @@ module.exports = function(grunt) {
114
114
} ,
115
115
selfTest : {
116
116
options : {
117
- specs :[ " test/selfTest/*.js" ] ,
118
- " --web-security" : "no"
117
+ specs : [ ' test/selfTest/*.js' ] ,
118
+ ' --web-security' : 'no'
119
119
}
120
120
}
121
121
} ,
0 commit comments