@@ -76,7 +76,7 @@ describe('configuration', function() {
7676const commonTests = function ( lazy ) {
7777 it ( 'loads things in' , function ( ) {
7878 const x = gulpLoadPlugins ( {
79- lazy : lazy ,
79+ lazy,
8080 config : {
8181 dependencies : {
8282 'gulp-foo' : '1.0.0' ,
@@ -106,7 +106,7 @@ const commonTests = function(lazy) {
106106
107107 it ( 'can take a pattern override' , function ( ) {
108108 const x = gulpLoadPlugins ( {
109- lazy : lazy ,
109+ lazy,
110110 pattern : 'jack-*' ,
111111 replaceString : 'jack-' ,
112112 config : {
@@ -125,7 +125,7 @@ const commonTests = function(lazy) {
125125
126126 it ( 'can extend the patterns' , function ( ) {
127127 const x = gulpLoadPlugins ( {
128- lazy : lazy ,
128+ lazy,
129129 config : {
130130 dependencies : {
131131 'jack-foo' : '1.0.0' ,
@@ -144,7 +144,7 @@ const commonTests = function(lazy) {
144144
145145 it ( 'allows camelizing to be turned off' , function ( ) {
146146 const x = gulpLoadPlugins ( {
147- lazy : lazy ,
147+ lazy,
148148 camelize : false ,
149149 config : {
150150 dependencies : {
@@ -160,7 +160,7 @@ const commonTests = function(lazy) {
160160
161161 it ( 'camelizes plugins name by default' , function ( ) {
162162 const x = gulpLoadPlugins ( {
163- lazy : lazy ,
163+ lazy,
164164 config : {
165165 dependencies : {
166166 'gulp-foo-bar' : '*'
@@ -175,7 +175,7 @@ const commonTests = function(lazy) {
175175
176176 it ( 'lets something be completely renamed' , function ( ) {
177177 const x = gulpLoadPlugins ( {
178- lazy : lazy ,
178+ lazy,
179179 config : { dependencies : { 'gulp-foo' : '1.0.0' } } ,
180180 rename : { 'gulp-foo' : 'bar' }
181181 } ) ;
@@ -187,7 +187,7 @@ const commonTests = function(lazy) {
187187 const restore = capture ( process . stdout ) ;
188188 try {
189189 const x = gulpLoadPlugins ( {
190- lazy : lazy ,
190+ lazy,
191191 DEBUG : true ,
192192 config : { dependencies : { 'gulp-foo' : '*' } }
193193 } ) ;
@@ -206,7 +206,7 @@ const commonTests = function(lazy) {
206206
207207 it ( 'supports loading scopped package as a nested reference' , function ( ) {
208208 const x = gulpLoadPlugins ( {
209- lazy : lazy ,
209+ lazy,
210210 config : { dependencies : { '@myco/gulp-test-plugin' : '1.0.0' } }
211211 } ) ;
212212
@@ -215,7 +215,7 @@ const commonTests = function(lazy) {
215215
216216 it ( 'supports loading scopped package as a top-level reference' , function ( ) {
217217 const x = gulpLoadPlugins ( {
218- lazy : lazy ,
218+ lazy,
219219 maintainScope : false ,
220220 config : { dependencies : { '@myco/gulp-test-plugin' : '1.0.0' } }
221221 } ) ;
@@ -246,7 +246,7 @@ const commonTests = function(lazy) {
246246
247247 it ( 'supports transforming' , function ( ) {
248248 const x = gulpLoadPlugins ( {
249- lazy : lazy ,
249+ lazy,
250250 config : { dependencies : { 'gulp-foo' : '1.0.0' } } ,
251251 postRequireTransforms : {
252252 foo : function ( foo ) {
0 commit comments