@@ -101,7 +101,7 @@ describe('config', function () {
101101 . and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'foo.js' ) ) ;
102102 } ) ;
103103
104- it ( 'finds the config at option env when config is a function' , function ( ) {
104+ it ( 'finds the config at option env when config is a function' , function ( ) {
105105 const settings = {
106106 config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
107107 env : {
@@ -113,7 +113,7 @@ describe('config', function () {
113113 . and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'bar.js' ) ) ;
114114 } ) ;
115115
116- it ( 'finds the config at option env when config is an array of functions' , function ( ) {
116+ it ( 'finds the config at option env when config is an array of functions' , function ( ) {
117117 const settings = {
118118 config : require ( path . join ( __dirname , './files/webpack.function.config.multiple.js' ) ) ,
119119 env : {
@@ -125,7 +125,7 @@ describe('config', function () {
125125 . and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'bar.js' ) ) ;
126126 } ) ;
127127
128- it ( 'passes argv to config when it is a function' , function ( ) {
128+ it ( 'passes argv to config when it is a function' , function ( ) {
129129 const settings = {
130130 config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
131131 argv : {
@@ -137,7 +137,7 @@ describe('config', function () {
137137 . and . equal ( path . join ( __dirname , 'files' , 'some' , 'bar' , 'bar.js' ) ) ;
138138 } ) ;
139139
140- it ( 'passes a default empty argv object to config when it is a function' , function ( ) {
140+ it ( 'passes a default empty argv object to config when it is a function' , function ( ) {
141141 const settings = {
142142 config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
143143 argv : undefined ,
@@ -146,7 +146,7 @@ describe('config', function () {
146146 expect ( function ( ) { resolve ( 'baz' , file , settings ) ; } ) . to . not . throw ( Error ) ;
147147 } ) ;
148148
149- it ( 'prevents async config using' , function ( ) {
149+ it ( 'prevents async config using' , function ( ) {
150150 const settings = {
151151 config : require ( path . join ( __dirname , './files/webpack.config.async.js' ) ) ,
152152 } ;
0 commit comments