File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ describe('The config-generator function', () => {
221
221
const actualConfig = configGenerator ( config ) ;
222
222
223
223
const loaderOptionsPlugin = findPlugin ( webpack . LoaderOptionsPlugin , actualConfig . plugins ) ;
224
- expect ( loaderOptionsPlugin . options . minimize ) . to . equal ( false ) ;
225
224
expect ( loaderOptionsPlugin . options . debug ) . to . equal ( true ) ;
226
225
expect ( loaderOptionsPlugin . options . options . context ) . to . equal ( '/tmp/context' ) ;
227
226
expect ( loaderOptionsPlugin . options . options . output . path ) . to . equal ( '/tmp/output/public-path' ) ;
@@ -242,7 +241,6 @@ describe('The config-generator function', () => {
242
241
const actualConfig = configGenerator ( config ) ;
243
242
244
243
const loaderOptionsPlugin = findPlugin ( webpack . LoaderOptionsPlugin , actualConfig . plugins ) ;
245
- expect ( loaderOptionsPlugin . options . minimize ) . to . equal ( true ) ;
246
244
expect ( loaderOptionsPlugin . options . debug ) . to . equal ( false ) ;
247
245
248
246
const moduleHashedIdsPlugin = findPlugin ( webpack . HashedModuleIdsPlugin , actualConfig . plugins ) ;
You can’t perform that action at this time.
0 commit comments