@@ -101,7 +101,7 @@ describe('config', function () {
101
101
. and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'foo.js' ) ) ;
102
102
} ) ;
103
103
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 ( ) {
105
105
const settings = {
106
106
config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
107
107
env : {
@@ -113,7 +113,7 @@ describe('config', function () {
113
113
. and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'bar.js' ) ) ;
114
114
} ) ;
115
115
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 ( ) {
117
117
const settings = {
118
118
config : require ( path . join ( __dirname , './files/webpack.function.config.multiple.js' ) ) ,
119
119
env : {
@@ -125,7 +125,7 @@ describe('config', function () {
125
125
. and . equal ( path . join ( __dirname , 'files' , 'some' , 'goofy' , 'path' , 'bar.js' ) ) ;
126
126
} ) ;
127
127
128
- it ( 'passes argv to config when it is a function' , function ( ) {
128
+ it ( 'passes argv to config when it is a function' , function ( ) {
129
129
const settings = {
130
130
config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
131
131
argv : {
@@ -137,7 +137,7 @@ describe('config', function () {
137
137
. and . equal ( path . join ( __dirname , 'files' , 'some' , 'bar' , 'bar.js' ) ) ;
138
138
} ) ;
139
139
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 ( ) {
141
141
const settings = {
142
142
config : require ( path . join ( __dirname , './files/webpack.function.config.js' ) ) ,
143
143
argv : undefined ,
@@ -146,7 +146,7 @@ describe('config', function () {
146
146
expect ( function ( ) { resolve ( 'baz' , file , settings ) ; } ) . to . not . throw ( Error ) ;
147
147
} ) ;
148
148
149
- it ( 'prevents async config using' , function ( ) {
149
+ it ( 'prevents async config using' , function ( ) {
150
150
const settings = {
151
151
config : require ( path . join ( __dirname , './files/webpack.config.async.js' ) ) ,
152
152
} ;
0 commit comments